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

  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteCholesky.h 169 const FactorType& matrixL() const { eigen_assert("m_factorizationIsOk"); return m_L; }
  /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...]
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 213 inline const LUMatrixType& matrixL() const
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 143 * y = b; matrixL().solveInPlace(y);
146 SparseLUMatrixLReturnType<SCMatrix> matrixL() const
233 this->matrixL().solveInPlace(X);
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 543 inline const LMatrixType& matrixL() const
    [all...]

Completed in 275 milliseconds