Home | History | Annotate | Download | only in eigen2

Lines Matching full:rows

22   int rows = m.rows();
29 MatrixType m1 = MatrixType::Random(rows, cols),
30 m2 = MatrixType::Random(rows, cols),
31 m3(rows, cols),
32 mzero = MatrixType::Zero(rows, cols),
33 identity = SquareMatrixType::Identity(rows, rows),
34 square = SquareMatrixType::Random(rows, rows);
35 VectorType v1 = VectorType::Random(rows),
36 v2 = VectorType::Random(rows),
37 v3 = VectorType::Random(rows),
38 vzero = VectorType::Zero(rows);
67 int r = ei_random<int>(0, rows-1),
76 VERIFY_IS_APPROX(VectorType::Random(rows).normalized().norm(), RealScalar(1));