Home | History | Annotate | Download | only in test

Lines Matching full:rows

21   Index rows, cols, cols2;
24 rows = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE);
28 rows = MatrixType::RowsAtCompileTime;
51 Index rank = internal::random<Index>(1, (std::min)(rows, cols)-1);
54 VERIFY((MatrixType::Zero(rows,cols).fullPivLu().image(MatrixType::Zero(rows,cols)).cols() == 1));
56 MatrixType m1(rows, cols), m3(rows, cols2);
58 createRandomPIMatrixOfRank(rank, rows, cols, m1);
68 MatrixType u(rows,cols);
70 RMatrixType l = RMatrixType::Identity(rows,rows);
71 l.block(0,0,rows,(std::min)(rows,cols)).template triangularView<StrictlyLower>()
72 = lu.matrixLU().block(0,0,rows,(std::min)(rows,cols));
93 m2.block(0,0,m2.rows(),m2.cols()) = lu.solve(m3);
139 Index rows = internal::random<Index>(1,4);
140 Index cols = rows;
142 MatrixType m1(cols, rows);