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

/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h120 inline typename Traits::MatrixU matrixU() const
417 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitUpper> MatrixU; typedef in struct:Eigen::internal::LDLT_Traits
419 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
425 typedef const TriangularView<const MatrixType, UnitUpper> MatrixU; typedef in struct:Eigen::internal::LDLT_Traits
427 static inline MatrixU getU(const MatrixType& m) { return m; }
H A DLLT.h97 inline typename Traits::MatrixU matrixU() const
358 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Upper> MatrixU; typedef in struct:Eigen::internal::LLT_Traits
360 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
368 typedef const TriangularView<const MatrixType, Upper> MatrixU; typedef in struct:Eigen::internal::LLT_Traits
370 static inline MatrixU getU(const MatrixType& m) { return m; }
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h259 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::Upper> MatrixU; typedef in struct:Eigen::internal::traits
261 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
273 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::UnitUpper> MatrixU; typedef in struct:Eigen::internal::traits
275 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
319 typedef typename Traits::MatrixU MatrixU; typedef in class:Eigen::SimplicialLLT
334 inline const MatrixU matrixU() const {
408 typedef typename Traits::MatrixU MatrixU; typedef in class:Eigen::SimplicialLDLT
429 inline const MatrixU matrix
[all...]

Completed in 110 milliseconds