Home | History | Annotate | Download | only in test

Lines Matching refs:Matrix

18   typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
81 // test back and forward substitution with a matrix as the rhs
119 Matrix<Scalar, MatrixType::ColsAtCompileTime, Dynamic> m5(cols, internal::random<int>(1,20)); m5.setRandom();
120 Matrix<Scalar, Dynamic, MatrixType::RowsAtCompileTime> m6(internal::random<int>(1,20), rows); m6.setRandom();
232 CALL_SUBTEST_1( triangular_square(Matrix<float, 1, 1>()) );
233 CALL_SUBTEST_2( triangular_square(Matrix<float, 2, 2>()) );
235 CALL_SUBTEST_4( triangular_square(Matrix<std::complex<float>,8, 8>()) );
237 CALL_SUBTEST_6( triangular_square(Matrix<float,Dynamic,Dynamic,RowMajor>(r, r)) );
239 CALL_SUBTEST_7( triangular_rect(Matrix<float, 4, 5>()) );
240 CALL_SUBTEST_8( triangular_rect(Matrix<double, 6, 2>()) );
243 CALL_SUBTEST_6( triangular_rect(Matrix<float,Dynamic,Dynamic,RowMajor>(r, c)) );