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

  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 173 derived().matrixU().solveInPlace(dest);
259 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::Upper> MatrixU;
261 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
273 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::UnitUpper> MatrixU;
275 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
319 typedef typename Traits::MatrixU MatrixU;
334 inline const MatrixU matrixU() const {
408 typedef typename Traits::MatrixU MatrixU
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 120 inline typename Traits::MatrixU matrixU() const
417 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitUpper> MatrixU;
419 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
425 typedef const TriangularView<const MatrixType, UnitUpper> MatrixU;
427 static inline MatrixU getU(const MatrixType& m) { return m; }
524 dec().matrixU().solveInPlace(dst);
571 res = matrixU() * res;
LLT.h 97 inline typename Traits::MatrixU matrixU() const
358 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Upper> MatrixU;
360 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
368 typedef const TriangularView<const MatrixType, Upper> MatrixU;
370 static inline MatrixU getU(const MatrixType& m) { return m; }
455 matrixU().solveInPlace(bAndX);

Completed in 522 milliseconds