Lines Matching refs:LLT
50 template<typename _MatrixType, int _UpLo> class LLT
78 LLT() : m_matrix(), m_isInitialized(false) {} in LLT() function
86 LLT(Index size) : m_matrix(size, size), in LLT() function
89 LLT(const MatrixType& matrix) in LLT() function
121 inline const internal::solve_retval<LLT, Rhs>
127 return internal::solve_retval<LLT, Rhs>(*this, b.derived()); in solve()
144 LLT& compute(const MatrixType& matrix);
174 LLT rankUpdate(const VectorType& vec, const RealScalar& sigma = 1);
391 LLT<MatrixType,_UpLo>& LLT<MatrixType,_UpLo>::compute(const MatrixType& a)
414 LLT<_MatrixType,_UpLo> LLT<_MatrixType,_UpLo>::rankUpdate(const VectorType& v, const RealScalar& si…
429 struct solve_retval<LLT<_MatrixType, UpLo>, Rhs>
430 : solve_retval_base<LLT<_MatrixType, UpLo>, Rhs>
432 typedef LLT<_MatrixType,UpLo> LLTType;
458 void LLT<MatrixType,_UpLo>::solveInPlace(MatrixBase<Derived> &bAndX) const
470 MatrixType LLT<MatrixType,_UpLo>::reconstructedMatrix() const
480 inline const LLT<typename MatrixBase<Derived>::PlainObject>
483 return LLT<PlainObject>(derived());
490 inline const LLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
493 return LLT<PlainObject,UpLo>(m_matrix);