Home | History | Annotate | Download | only in test

Lines Matching refs:Rows

19   enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime,
21 typedef PermutationMatrix<Rows> LeftPermutationType;
22 typedef Matrix<int, Rows, 1> LeftPermutationVectorType;
28 Index rows = m.rows();
31 MatrixType m_original = MatrixType::Random(rows,cols);
33 randomPermutationVector(lv, rows);
38 MatrixType m_permuted = MatrixType::Random(rows,cols);
42 for (int i=0; i<rows; i++)
46 Matrix<Scalar,Rows,Rows> lm(lp);
64 randomPermutationVector(lv2, rows);
66 Matrix<Scalar,Rows,Rows> lm2(lp2);
72 identityp.setIdentity(rows);
92 if(rows>1 && cols>1)
95 Index i = internal::random<Index>(0, rows-1);
97 do j = internal::random<Index>(0, rows-1); while(j==i);