Home | History | Annotate | Download | only in eigen2

Lines Matching full:rows

14   const int rows = ref.rows();
19 double density = std::max(8./(rows*cols), 0.01);
25 DenseMatrix refMat2 = DenseMatrix::Zero(rows, rows);
26 DenseMatrix refMat3 = DenseMatrix::Zero(rows, rows);
27 DenseMatrix refMat4 = DenseMatrix::Zero(rows, rows);
28 DenseMatrix dm4 = DenseMatrix::Zero(rows, rows);
29 SparseMatrixType m2(rows, rows);
30 SparseMatrixType m3(rows, rows);
31 SparseMatrixType m4(rows, rows);
58 DenseMatrix refM2 = DenseMatrix::Zero(rows, rows);
59 DenseMatrix refM3 = DenseMatrix::Zero(rows, rows);
60 DiagonalMatrix<DenseVector> d1(DenseVector::Random(rows));
61 SparseMatrixType m2(rows, rows);
62 SparseMatrixType m3(rows, rows);
73 DenseMatrix b = DenseMatrix::Random(rows, rows);
74 DenseMatrix x = DenseMatrix::Random(rows, rows);
75 DenseMatrix refX = DenseMatrix::Random(rows, rows);
76 DenseMatrix refUp = DenseMatrix::Zero(rows, rows);
77 DenseMatrix refLo = DenseMatrix::Zero(rows, rows);
78 DenseMatrix refS = DenseMatrix::Zero(rows, rows);
79 SparseMatrixType mUp(rows, rows);
80 SparseMatrixType mLo(rows, rows);
81 SparseMatrixType mS(rows, rows);