HomeSort by relevance Sort by last modified time
    Searched refs:cholesky (Results 1 - 8 of 8) sorted by null

  /external/eigen/test/eigen2/
eigen2_cholesky.cpp 12 #include <Eigen/Cholesky>
19 template<typename MatrixType> void cholesky(const MatrixType& m) function
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)) )
    [all...]
gsl_helper.h 33 static void cholesky(Matrix& m) { gsl_linalg_cholesky_decomp(m); } function in struct:Eigen::GslTraits
67 static void cholesky(Matrix& m) { gsl_linalg_complex_cholesky_decomp(m); } function in struct:Eigen::GslTraits
  /external/eigen/bench/btl/actions/
action_cholesky.hh 98 Interface::cholesky(X,C,_size);
103 // STL_interface<typename Interface::real_type>::cholesky(X_stl,C_stl,_size);
  /external/eigen/bench/btl/data/
go_mean 44 source mk_mean_script.sh cholesky $1 11 100 300 1000 $mode $prefix
  /external/eigen/test/
cholesky.cpp 19 #include <Eigen/Cholesky>
61 template<typename MatrixType> void cholesky(const MatrixType& m) function
86 // to test if really Cholesky only uses the upper triangular part, uncomment the following
244 cholesky(m);
379 CALL_SUBTEST_1( cholesky(Matrix<double,1,1>()) );
380 CALL_SUBTEST_3( cholesky(Matrix2d()) );
383 CALL_SUBTEST_4( cholesky(Matrix3f()) );
384 CALL_SUBTEST_5( cholesky(Matrix4d()) );
386 CALL_SUBTEST_2( cholesky(MatrixXd(s,s)) );
  /external/eigen/bench/btl/libs/BLAS/
blas_interface_impl.hh 66 static inline void cholesky(const gene_matrix & X, gene_matrix & C, int N){ function in class:blas_interface
  /external/eigen/bench/btl/libs/eigen2/
eigen2_interface.hh 22 #include <Eigen/Cholesky>
144 static inline void cholesky(const gene_matrix & X, gene_matrix & C, int N){ function in class:eigen2_interface
147 // Cholesky<gene_matrix>::computeInPlace(C);
148 // Cholesky<gene_matrix>::computeInPlaceBlock(C);
  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 205 static inline void cholesky(const gene_matrix & X, gene_matrix & C, int N){ function in class:eigen3_interface
210 // Cholesky<gene_matrix>::computeInPlace(C);
211 // Cholesky<gene_matrix>::computeInPlaceBlock(C);

Completed in 260 milliseconds