|
| enum | { UpLo = _UpLo
} |
| |
|
typedef _MatrixType | MatrixType |
| |
|
typedef SimplicialCholeskyBase< SimplicialLDLT > | Base |
| |
|
typedef MatrixType::Scalar | Scalar |
| |
|
typedef MatrixType::RealScalar | RealScalar |
| |
|
typedef MatrixType::Index | Index |
| |
|
typedef SparseMatrix< Scalar, ColMajor, Index > | CholMatrixType |
| |
|
typedef Matrix< Scalar, Dynamic, 1 > | VectorType |
| |
|
typedef internal::traits< SimplicialLDLT > | Traits |
| |
|
typedef Traits::MatrixL | MatrixL |
| |
|
typedef Traits::MatrixU | MatrixU |
| |
| enum | |
| |
|
typedef internal::traits< SimplicialLDLT< _MatrixType, _UpLo > >::MatrixType | MatrixType |
| |
|
typedef MatrixType::Scalar | Scalar |
| |
|
typedef MatrixType::RealScalar | RealScalar |
| |
|
typedef MatrixType::Index | Index |
| |
|
typedef SparseMatrix< Scalar, ColMajor, Index > | CholMatrixType |
| |
|
typedef Matrix< Scalar, Dynamic, 1 > | VectorType |
| |
|
| | SimplicialLDLT () |
| |
| | SimplicialLDLT (const MatrixType &matrix) |
| |
| const VectorType | vectorD () const |
| |
| const MatrixL | matrixL () const |
| |
| const MatrixU | matrixU () const |
| |
| SimplicialLDLT & | compute (const MatrixType &matrix) |
| |
| void | analyzePattern (const MatrixType &a) |
| |
| void | factorize (const MatrixType &a) |
| |
| Scalar | determinant () const |
| |
| | SimplicialCholeskyBase () |
| |
|
| SimplicialCholeskyBase (const MatrixType &matrix) |
| |
|
SimplicialLDLT< _MatrixType, _UpLo > & | derived () |
| |
|
const SimplicialLDLT< _MatrixType, _UpLo > & | derived () const |
| |
|
Index | cols () const |
| |
|
Index | rows () const |
| |
| ComputationInfo | info () const |
| | Reports whether previous computation was successful. More...
|
| |
| const internal::solve_retval< SimplicialCholeskyBase, Rhs > | solve (const MatrixBase< Rhs > &b) const |
| |
| const internal::sparse_solve_retval< SimplicialCholeskyBase, Rhs > | solve (const SparseMatrixBase< Rhs > &b) const |
| |
| const PermutationMatrix< Dynamic, Dynamic, Index > & | permutationP () const |
| |
| const PermutationMatrix< Dynamic, Dynamic, Index > & | permutationPinv () const |
| |
| SimplicialLDLT< _MatrixType, _UpLo > & | setShift (const RealScalar &offset, const RealScalar &scale=1) |
| |
|
void | dumpMemory (Stream &s) |
| |
|
void | _solve (const MatrixBase< Rhs > &b, MatrixBase< Dest > &dest) const |
| |
template<typename _MatrixType, int _UpLo>
class Eigen::SimplicialLDLT< _MatrixType, _UpLo >
A direct sparse LDLT Cholesky factorizations without square root.
This class provides a LDL^T Cholesky factorizations without square root 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.
In order to reduce the fill-in, a symmetric permutation P is applied prior to the factorization such that the factorized matrix is P A P^-1.
- 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. |
- See also
- class SimplicialLLT
Definition at line 244 of file SimplicialCholesky.h.