/external/eigen/doc/examples/ |
TutorialLinAlgRankRevealing.cpp | 14 FullPivLU<Matrix3f> lu_decomp(A); 15 cout << "The rank of A is " << lu_decomp.rank() << endl; 17 << lu_decomp.kernel() << endl; 19 << lu_decomp.image(A) << endl; // yes, have to pass the original A
|
/external/eigen/bench/btl/actions/ |
action_lu_decomp.hh | 91 Interface::lu_decomp(X,C,_size); 98 // STL_interface<typename Interface::real_type>::lu_decomp(X_stl,C_stl,_size);
|
/external/eigen/bench/btl/libs/BLAS/ |
blas_interface_impl.hh | 101 static inline void lu_decomp(const gene_matrix & X, gene_matrix & C, int N){ function in class:blas_interface
|
/external/eigen/bench/btl/libs/eigen2/ |
eigen2_interface.hh | 151 static inline void lu_decomp(const gene_matrix & X, gene_matrix & C, int N){ function in class:eigen2_interface
|
/external/eigen/bench/btl/libs/eigen3/ |
eigen3_interface.hh | 214 static inline void lu_decomp(const gene_matrix & X, gene_matrix & C, int N){ function in class:eigen3_interface
|