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

  /external/eigen/test/
nomalloc.cpp 128 Eigen::LDLT<Matrix> LDLT; LDLT.compute(A);
129 X = LDLT.solve(B);
130 x = LDLT.solve(b);
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 24 * \class LDLT
43 * \sa MatrixBase::ldlt(), class LLT
45 template<typename _MatrixType, int _UpLo> class LDLT
70 * perform decompositions via LDLT::compute(const MatrixType&).
72 LDLT() : m_matrix(), m_transpositions(), m_isInitialized(false) {}
78 * \sa LDLT()
80 LDLT(Index size)
90 * \sa LDLT(Index size)
92 LDLT(const MatrixType& matrix)
112 eigen_assert(m_isInitialized && "LDLT is not initialized.")
575 SelfAdjointView<MatrixType, UpLo>::ldlt() const function in class:Eigen::SelfAdjointView
585 MatrixBase<Derived>::ldlt() const function in class:Eigen::MatrixBase
    [all...]

Completed in 559 milliseconds