Home | History | Annotate | Download | only in eigen2

Lines Matching refs:cols

22         int cols = m1.cols();
25 VERIFY_IS_APPROX(mi, m1.block(1,1,rows-1,cols-1));
49 int cols = m.cols();
51 MatrixType m1 = MatrixType::Random(rows, cols),
52 m2 = MatrixType::Random(rows, cols),
53 m3(rows, cols),
54 mzero = MatrixType::Zero(rows, cols),
55 ones = MatrixType::Ones(rows, cols),
69 int c1 = ei_random<int>(0,cols-1);
70 int c2 = ei_random<int>(c1,cols-1);
81 RowVectorType br1(m1.block(r1,0,1,cols));
103 if (rows>=5 && cols>=8)
132 VERIFY(ei_real(ones.row(r1).sum()) == RealScalar(cols));
135 VERIFY(ei_real(ones.row(r1).eigen2_dot(ones.row(r2))) == RealScalar(cols));