Lines Matching defs:rows
25 int r = internal::random(0,m2.rows()-1);
40 const Index rows = internal::random<int>(1,n);
46 double density = (std::max)(8./(rows*cols), 0.01);
55 DenseMatrix refMat2 = DenseMatrix::Zero(rows, depth);
56 DenseMatrix refMat2t = DenseMatrix::Zero(depth, rows);
59 DenseMatrix refMat4 = DenseMatrix::Zero(rows, cols);
60 DenseMatrix refMat4t = DenseMatrix::Zero(cols, rows);
62 DenseMatrix refMat6 = DenseMatrix::Random(rows, rows);
63 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows);
64 // DenseVector dv1 = DenseVector::Random(rows);
65 SparseMatrixType m2 (rows, depth);
66 SparseMatrixType m2t(depth, rows);
69 SparseMatrixType m4 (rows, cols);
70 SparseMatrixType m4t(cols, rows);
71 SparseMatrixType m6(rows, rows);
124 DenseMatrix refM2 = DenseMatrix::Zero(rows, rows);
125 DenseMatrix refM3 = DenseMatrix::Zero(rows, rows);
126 DiagonalMatrix<Scalar,Dynamic> d1(DenseVector::Random(rows));
127 SparseMatrixType m2(rows, rows);
128 SparseMatrixType m3(rows, rows);
139 DenseMatrix b = DenseMatrix::Random(rows, rows);
140 DenseMatrix x = DenseMatrix::Random(rows, rows);
141 DenseMatrix refX = DenseMatrix::Random(rows, rows);
142 DenseMatrix refUp = DenseMatrix::Zero(rows, rows);
143 DenseMatrix refLo = DenseMatrix::Zero(rows, rows);
144 DenseMatrix refS = DenseMatrix::Zero(rows, rows);
145 SparseMatrixType mUp(rows, rows);
146 SparseMatrixType mLo(rows, rows);
147 SparseMatrixType mS(rows, rows);