Home | History | Annotate | Download | only in test

Lines Matching refs:rows

23   Index rows = m.rows();
26 MatrixType m1 = MatrixType::Random(rows, cols),
27 m2 = MatrixType::Random(rows, cols);
29 VectorType v1 = VectorType::Random(rows);
37 x1.resize(rows*f1,cols*f2);
40 x1.block(i*rows,j*cols,rows,cols) = m1;
43 x2.resize(2*rows,3*cols);
48 x2.resize(rows,3*cols);
52 vx1.resize(3*rows,cols);
59 VERIFY_IS_APPROX(m2.coeff(0), (m2.template replicate<3,1>().coeff(m2.rows())));
61 x2.resize(rows,f1);
66 vx1.resize(rows*f2);
68 vx1.segment(j*rows,rows) = v1;