Searched defs:MatrixL (Results 1 - 3 of 3) sorted by relevance

/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h127 inline typename Traits::MatrixL matrixL() const
416 typedef const TriangularView<const MatrixType, UnitLower> MatrixL; typedef in struct:Eigen::internal::LDLT_Traits
418 static inline MatrixL getL(const MatrixType& m) { return m; }
424 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitLower> MatrixL; typedef in struct:Eigen::internal::LDLT_Traits
426 static inline MatrixL getL(const MatrixType& m) { return m.adjoint(); }
H A DLLT.h104 inline typename Traits::MatrixL matrixL() const
357 typedef const TriangularView<const MatrixType, Lower> MatrixL; typedef in struct:Eigen::internal::LLT_Traits
359 static inline MatrixL getL(const MatrixType& m) { return m; }
367 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Lower> MatrixL; typedef in struct:Eigen::internal::LLT_Traits
369 static inline MatrixL getL(const MatrixType& m) { return m.adjoint(); }
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h258 typedef SparseTriangularView<CholMatrixType, Eigen::Lower> MatrixL; typedef in struct:Eigen::internal::traits
260 static inline MatrixL getL(const MatrixType& m) { return m; }
272 typedef SparseTriangularView<CholMatrixType, Eigen::UnitLower> MatrixL; typedef in struct:Eigen::internal::traits
274 static inline MatrixL getL(const MatrixType& m) { return m; }
318 typedef typename Traits::MatrixL MatrixL; typedef in class:Eigen::SimplicialLLT
328 inline const MatrixL matrixL() const {
407 typedef typename Traits::MatrixL MatrixL; typedef in class:Eigen::SimplicialLDLT
423 inline const MatrixL matrix
[all...]

Completed in 2142 milliseconds