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

  /external/eigen/Eigen/src/Cholesky/
LDLT.h 148 inline typename Traits::MatrixL matrixL() const
470 typedef const TriangularView<const MatrixType, UnitLower> MatrixL;
472 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
478 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitLower> MatrixL;
480 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m.adjoint()); }
565 matrixL().solveInPlace(dst);
638 res = matrixL() * res
    [all...]
LLT.h 122 inline typename Traits::MatrixL matrixL() const
392 typedef const TriangularView<const MatrixType, Lower> MatrixL;
394 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
402 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Lower> MatrixL;
404 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m.adjoint()); }
496 matrixL().solveInPlace(bAndX);
507 return matrixL() * matrixL().adjoint().toDenseMatrix()
    [all...]
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 170 derived().matrixL().solveInPlace(dest);
280 typedef TriangularView<const CholMatrixType, Eigen::Lower> MatrixL;
282 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
294 typedef TriangularView<const CholMatrixType, Eigen::UnitLower> MatrixL;
296 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
342 typedef typename Traits::MatrixL MatrixL;
352 inline const MatrixL matrixL() const
    [all...]

Completed in 72 milliseconds