Home | History | Annotate | Download | only in test

Lines Matching full:rows

21   Index rows = m.rows();
26 MatrixType m1 = MatrixType::Random(rows, cols),
27 m2 = MatrixType::Random(rows, cols),
28 m3(rows, cols),
29 mzero = MatrixType::Zero(rows, cols),
30 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>::Random(rows, rows);
31 VectorType v1 = VectorType::Random(rows),
32 vzero = VectorType::Zero(rows);
33 SquareMatrixType sm1 = SquareMatrixType::Random(rows,rows), sm2(rows,rows);
38 Index r = internal::random<Index>(0, rows-1),
70 VERIFY_IS_MUCH_SMALLER_THAN(MatrixType::Zero(rows,cols)(r,c), static_cast<Scalar>(1));
74 Matrix<Scalar, 1, MatrixType::RowsAtCompileTime> rv(rows);
75 Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> cv(rows);
81 if(cols!=1 && rows!=1 && MatrixType::SizeAtCompileTime!=Dynamic)
83 VERIFY_RAISES_ASSERT(m1 = (m2.block(0,0, rows-1, cols-1)));
86 if(cols!=1 && rows!=1)
111 for(typename MatrixType::Index i=0;i<rows;++i)
116 for(typename MatrixType::Index i=0;i<rows;++i)
121 for(typename MatrixType::Index i=0;i<rows;++i)
126 for(typename MatrixType::Index i=0;i<rows;++i)
138 Index rows = m.rows();
151 RealMatrixType rm1 = RealMatrixType::Random(rows,cols),
152 rm2 = RealMatrixType::Random(rows,cols);
153 MatrixType cm(rows,cols);