Home | History | Annotate | Download | only in test

Lines Matching refs:householder

13 template<typename MatrixType> void householder(const MatrixType& m)
19 Householder.h
78 // test householder sequence on the left with a shift
116 // test householder sequence on the right with a shift
129 CALL_SUBTEST_1( householder(Matrix<double,2,2>()) );
130 CALL_SUBTEST_2( householder(Matrix<float,2,3>()) );
131 CALL_SUBTEST_3( householder(Matrix<double,3,5>()) );
132 CALL_SUBTEST_4( householder(Matrix<float,4,4>()) );
133 CALL_SUBTEST_5( householder(MatrixXd(internal::random<int>(1,EIGEN_TEST_MAX_SIZE),internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
134 CALL_SUBTEST_6( householder(MatrixXcf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE),internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
135 CALL_SUBTEST_7( householder(MatrixXf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE),internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
136 CALL_SUBTEST_8( householder(Matrix<double,1,1>()) );