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

  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 167 derived().matrixL().solveInPlace(dest);
258 typedef SparseTriangularView<CholMatrixType, Eigen::Lower> MatrixL;
260 static inline MatrixL getL(const MatrixType& m) { return m; }
272 typedef SparseTriangularView<CholMatrixType, Eigen::UnitLower> MatrixL;
274 static inline MatrixL getL(const MatrixType& m) { return m; }
318 typedef typename Traits::MatrixL MatrixL;
328 inline const MatrixL matrixL() const {
407 typedef typename Traits::MatrixL MatrixL
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 127 inline typename Traits::MatrixL matrixL() const
416 typedef const TriangularView<const MatrixType, UnitLower> MatrixL;
418 static inline MatrixL getL(const MatrixType& m) { return m; }
424 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitLower> MatrixL;
426 static inline MatrixL getL(const MatrixType& m) { return m.adjoint(); }
499 dec().matrixL().solveInPlace(dst);
575 res = matrixL() * res;
LLT.h 104 inline typename Traits::MatrixL matrixL() const
357 typedef const TriangularView<const MatrixType, Lower> MatrixL;
359 static inline MatrixL getL(const MatrixType& m) { return m; }
367 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Lower> MatrixL;
369 static inline MatrixL getL(const MatrixType& m) { return m.adjoint(); }
454 matrixL().solveInPlace(bAndX);
465 return matrixL() * matrixL().adjoint().toDenseMatrix();

Completed in 68 milliseconds