Home | History | Annotate | Download | only in test

Lines Matching defs:Rows

18   enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime,
20 typedef PermutationMatrix<Rows> LeftPermutationType;
21 typedef Matrix<int, Rows, 1> LeftPermutationVectorType;
27 Index rows = m.rows();
30 MatrixType m_original = MatrixType::Random(rows,cols);
32 randomPermutationVector(lv, rows);
39 for (int i=0; i<rows; i++)
43 Matrix<Scalar,Rows,Rows> lm(lp);
57 randomPermutationVector(lv2, rows);
59 Matrix<Scalar,Rows,Rows> lm2(lp2);
65 identityp.setIdentity(rows);
85 if(rows>1 && cols>1)
88 Index i = internal::random<Index>(0, rows-1);
90 do j = internal::random<Index>(0, rows-1); while(j==i);