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

  /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);
  /external/eigen/test/
cholesky.cpp 17 #include <Eigen/Cholesky>
58 template<typename MatrixType> void cholesky(const MatrixType& m) function
288 cholesky(m);
481 CALL_SUBTEST_1( cholesky(Matrix<double,1,1>()) );
482 CALL_SUBTEST_3( cholesky(Matrix2d()) );
485 CALL_SUBTEST_4( cholesky(Matrix3f()) );
486 CALL_SUBTEST_5( cholesky(Matrix4d()) );
489 CALL_SUBTEST_2( cholesky(MatrixXd(s,s)) );

Completed in 109 milliseconds