Classes |
| struct | keep_diag |
Public Types |
| enum | { UpLo
} |
typedef SparseMatrix< Scalar,
ColMajor, Index > | CholMatrixType |
| typedef MatrixType::Index | Index |
typedef internal::traits
< Derived >::MatrixType | MatrixType |
| typedef MatrixType::RealScalar | RealScalar |
| typedef MatrixType::Scalar | Scalar |
typedef Matrix< Scalar,
Dynamic, 1 > | VectorType |
Public Member Functions |
| Index | cols () const |
| Derived & | compute (const MatrixType &matrix) |
| Derived & | derived () |
| const Derived & | derived () const |
| ComputationInfo | info () const |
| | Reports whether previous computation was successful.
|
const PermutationMatrix
< Dynamic, Dynamic, Index > & | permutationP () const |
const PermutationMatrix
< Dynamic, Dynamic, Index > & | permutationPinv () const |
| Index | rows () const |
| Derived & | setShift (const RealScalar &offset, const RealScalar &scale=1) |
| | SimplicialCholeskyBase () |
| | SimplicialCholeskyBase (const MatrixType &matrix) |
| template<typename Rhs > |
const internal::solve_retval
< SimplicialCholeskyBase, Rhs > | solve (const MatrixBase< Rhs > &b) const |
| template<typename Rhs > |
const
internal::sparse_solve_retval
< SimplicialCholeskyBase, Rhs > | solve (const SparseMatrixBase< Rhs > &b) const |
| | ~SimplicialCholeskyBase () |
Protected Member Functions |
| void | analyzePattern (const MatrixType &a, bool doLDLT) |
| template<bool DoLDLT> |
| void | factorize (const MatrixType &a) |
Protected Attributes |
| bool | m_analysisIsOk |
| VectorType | m_diag |
| bool | m_factorizationIsOk |
| ComputationInfo | m_info |
| bool | m_isInitialized |
| CholMatrixType | m_matrix |
| VectorXi | m_nonZerosPerCol |
PermutationMatrix< Dynamic,
Dynamic, Index > | m_P |
| VectorXi | m_parent |
PermutationMatrix< Dynamic,
Dynamic, Index > | m_Pinv |
| RealScalar | m_shiftOffset |
| RealScalar | m_shiftScale |
template<typename Derived>
class Eigen::SimplicialCholeskyBase< Derived >
A direct sparse Cholesky factorizations.
These classes provide LL^T and LDL^T Cholesky factorizations of sparse matrices that are selfadjoint and positive definite. The factorization allows for solving A.X = B where X and B can be either dense or sparse.
- Template Parameters:
-
| _MatrixType | the type of the sparse matrix A, it must be a SparseMatrix<> |
| _UpLo | the triangular part that will be used for the computations. It can be Lower or Upper. Default is Lower. |