Lines Matching full:rows
27 Index r = internal::random<Index>(0,m2.rows()-1);
42 const Index rows = internal::random<Index>(1,n);
48 double density = (std::max)(8./(rows*cols), 0.1);
60 DenseMatrix refMat2 = DenseMatrix::Zero(rows, depth);
61 DenseMatrix refMat2t = DenseMatrix::Zero(depth, rows);
64 DenseMatrix refMat4 = DenseMatrix::Zero(rows, cols);
65 DenseMatrix refMat4t = DenseMatrix::Zero(cols, rows);
67 DenseMatrix refMat6 = DenseMatrix::Random(rows, rows);
68 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows);
69 // DenseVector dv1 = DenseVector::Random(rows);
70 SparseMatrixType m2 (rows, depth);
71 SparseMatrixType m2t(depth, rows);
74 SparseMatrixType m4 (rows, cols);
75 SparseMatrixType m4t(cols, rows);
76 SparseMatrixType m6(rows, rows);
144 DenseMatrix refM2 = DenseMatrix::Zero(rows, cols);
145 DenseMatrix refM3 = DenseMatrix::Zero(rows, cols);
146 DenseMatrix d3 = DenseMatrix::Zero(rows, cols);
148 DiagonalMatrix<Scalar,Dynamic> d2(DenseVector::Random(rows));
149 SparseMatrixType m2(rows, cols);
150 SparseMatrixType m3(rows, cols);
160 DenseVector v2 = DenseVector::Random(rows);
177 DenseMatrix b = DenseMatrix::Random(rows, rows);
178 DenseMatrix x = DenseMatrix::Random(rows, rows);
179 DenseMatrix refX = DenseMatrix::Random(rows, rows);
180 DenseMatrix refUp = DenseMatrix::Zero(rows, rows);
181 DenseMatrix refLo = DenseMatrix::Zero(rows, rows);
182 DenseMatrix refS = DenseMatrix::Zero(rows, rows);
183 SparseMatrixType mUp(rows, rows);
184 SparseMatrixType mLo(rows, rows);
185 SparseMatrixType mS(rows, rows);
210 SparseMatrixType mSres(rows,rows);