Home | History | Annotate | Download | only in test

Lines Matching defs:Rows

17   enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime,
19 typedef PermutationMatrix<Rows> LeftPermutationType;
20 typedef Matrix<int, Rows, 1> LeftPermutationVectorType;
26 Index rows = m.rows();
29 MatrixType m_original = MatrixType::Random(rows,cols);
31 randomPermutationVector(lv, rows);
38 for (int i=0; i<rows; i++)
42 Matrix<Scalar,Rows,Rows> lm(lp);
56 randomPermutationVector(lv2, rows);
58 Matrix<Scalar,Rows,Rows> lm2(lp2);
64 identityp.setIdentity(rows);
84 if(rows>1 && cols>1)
87 Index i = internal::random<Index>(0, rows-1);
89 do j = internal::random<Index>(0, rows-1); while(j==i);