Home | History | Annotate | Download | only in test

Lines Matching refs:Cols

17   enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime,
22 typedef PermutationMatrix<Cols> RightPermutationType;
23 typedef Matrix<int, Cols, 1> RightPermutationVectorType;
27 Index cols = m.cols();
29 MatrixType m_original = MatrixType::Random(rows,cols);
34 randomPermutationVector(rv, cols);
39 for (int j=0; j<cols; j++)
43 Matrix<Scalar,Cols,Cols> rm(rp);
84 if(rows>1 && cols>1)
96 i = internal::random<Index>(0, cols-1);
97 do j = internal::random<Index>(0, cols-1); while(j==i);