Lines Matching refs:LDLT
50 template<typename _MatrixType, int _UpLo> class LDLT
77 LDLT() in LDLT() function
90 explicit LDLT(Index size) in LDLT() function
105 explicit LDLT(const EigenBase<InputType>& matrix) in LDLT() function
122 explicit LDLT(EigenBase<InputType>& matrix) in LDLT() function
199 inline const Solve<LDLT, Rhs>
205 return Solve<LDLT, Rhs>(*this, b.derived()); in solve()
212 LDLT& compute(const EigenBase<InputType>& matrix);
224 LDLT& rankUpdate(const MatrixBase<Derived>& w, const RealScalar& alpha=1);
243 const LDLT& adjoint() const { return *this; }; in adjoint()
490 LDLT<MatrixType,_UpLo>& LDLT<MatrixType,_UpLo>::compute(const EigenBase<InputType>& a)
530 LDLT<MatrixType,_UpLo>& LDLT<MatrixType,_UpLo>::rankUpdate(const MatrixBase<Derived>& w, const type…
558 void LDLT<_MatrixType,_UpLo>::_solve_impl(const RhsType &rhs, DstType &dst) const
610 bool LDLT<MatrixType,_UpLo>::solveInPlace(MatrixBase<Derived> &bAndX) const
624 MatrixType LDLT<MatrixType,_UpLo>::reconstructedMatrix() const
650 inline const LDLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
653 return LDLT<PlainObject,UpLo>(m_matrix);
661 inline const LDLT<typename MatrixBase<Derived>::PlainObject>
664 return LDLT<PlainObject>(derived());