Home | History | Annotate | Download | only in test

Lines Matching full:cols

18   enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime,
23 typedef PermutationMatrix<Cols> RightPermutationType;
24 typedef Matrix<int, Cols, 1> RightPermutationVectorType;
28 Index cols = m.cols();
30 MatrixType m_original = MatrixType::Random(rows,cols);
35 randomPermutationVector(rv, cols);
40 for (int j=0; j<cols; j++)
44 Matrix<Scalar,Cols,Cols> rm(rp);
85 if(rows>1 && cols>1)
97 i = internal::random<Index>(0, cols-1);
98 do j = internal::random<Index>(0, cols-1); while(j==i);