Home | History | Annotate | Download | only in eigen2

Lines Matching refs:Cholesky

12 #include <Eigen/Cholesky>
19 template<typename MatrixType> void cholesky(const MatrixType& m)
50 Gsl::cholesky(gMatA);
89 #if 0 // cholesky is not rank-revealing anyway
105 CALL_SUBTEST_1( cholesky(Matrix<double,1,1>()) );
106 CALL_SUBTEST_2( cholesky(Matrix2d()) );
107 CALL_SUBTEST_3( cholesky(Matrix3f()) );
108 CALL_SUBTEST_4( cholesky(Matrix4d()) );
109 CALL_SUBTEST_5( cholesky(MatrixXcd(7,7)) );
110 CALL_SUBTEST_6( cholesky(MatrixXf(17,17)) );
111 CALL_SUBTEST_7( cholesky(MatrixXd(33,33)) );