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

  /external/eigen/test/
nomalloc.cpp 130 Eigen::LLT<Matrix> LLT; LLT.compute(A);
131 X = LLT.solve(B);
132 x = LLT.solve(b);
  /external/eigen/Eigen/src/Cholesky/
LLT.h 21 * \class LLT
37 * Remember that Cholesky decompositions are not rank-revealing. This LLT decomposition is only stable on positive definite matrices,
44 * \sa MatrixBase::llt(), class LDLT
50 template<typename _MatrixType, int _UpLo> class LLT
76 * perform decompositions via LLT::compute(const MatrixType&).
78 LLT() : m_matrix(), m_isInitialized(false) {}
84 * \sa LLT()
86 LLT(Index size) : m_matrix(size, size),
89 LLT(const MatrixType& matrix)
99 eigen_assert(m_isInitialized && "LLT is not initialized.")
481 MatrixBase<Derived>::llt() const function in class:Eigen::MatrixBase
491 SelfAdjointView<MatrixType, UpLo>::llt() const function in class:Eigen::SelfAdjointView
    [all...]

Completed in 70 milliseconds