#include <DenseCholesky.h>
Public Types | |
using | Scalar = Scalar_ |
Public Member Functions | |
Index | cols () const |
template<typename Derived > | |
DenseCholesky (const Eigen::MatrixBase< Derived > &mat) | |
CompInfo | info () const |
void | lower_triangular_solve (const Scalar *x_in, Scalar *y_out) const |
Index | rows () const |
void | upper_triangular_solve (const Scalar *x_in, Scalar *y_out) const |
Private Types | |
using | Index = Eigen::Index |
using | MapConstVec = Eigen::Map< const Vector > |
using | MapVec = Eigen::Map< Vector > |
using | Matrix = Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic, Flags > |
using | Vector = Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > |
Private Attributes | |
Eigen::LLT< Matrix, Uplo > | m_decomp |
CompInfo | m_info |
const Index | m_n |
This class defines the operations related to Cholesky decomposition on a positive definite matrix, , where
is a lower triangular matrix. It is mainly used in the SymGEigsSolver generalized eigen solver in the Cholesky decomposition mode.
Scalar_ | The element type of the matrix, for example, float , double , and long double . |
Uplo | Either Eigen::Lower or Eigen::Upper , indicating which triangular part of the matrix is used. |
Flags | Either Eigen::ColMajor or Eigen::RowMajor , indicating the storage format of the input matrix. |
Definition at line 34 of file DenseCholesky.h.
|
private |
Definition at line 43 of file DenseCholesky.h.
|
private |
Definition at line 46 of file DenseCholesky.h.
|
private |
Definition at line 47 of file DenseCholesky.h.
|
private |
Definition at line 44 of file DenseCholesky.h.
using Spectra::DenseCholesky< Scalar_, Uplo, Flags >::Scalar = Scalar_ |
Element type of the matrix.
Definition at line 40 of file DenseCholesky.h.
|
private |
Definition at line 45 of file DenseCholesky.h.
|
inline |
Constructor to create the matrix operation object.
mat | An Eigen matrix object, whose type can be Eigen::Matrix<Scalar, ...> (e.g. Eigen::MatrixXd and Eigen::MatrixXf ), or its mapped version (e.g. Eigen::Map<Eigen::MatrixXd> ). |
Definition at line 63 of file DenseCholesky.h.
|
inline |
Returns the number of columns of the underlying matrix.
Definition at line 86 of file DenseCholesky.h.
|
inline |
Returns the status of the computation. The full list of enumeration values can be found in Enumerations.
Definition at line 92 of file DenseCholesky.h.
|
inline |
Performs the lower triangular solving operation .
x_in | Pointer to the ![]() |
y_out | Pointer to the ![]() |
Definition at line 101 of file DenseCholesky.h.
|
inline |
Returns the number of rows of the underlying matrix.
Definition at line 82 of file DenseCholesky.h.
|
inline |
Performs the upper triangular solving operation .
x_in | Pointer to the ![]() |
y_out | Pointer to the ![]() |
Definition at line 115 of file DenseCholesky.h.
|
private |
Definition at line 50 of file DenseCholesky.h.
|
private |
Definition at line 51 of file DenseCholesky.h.
|
private |
Definition at line 49 of file DenseCholesky.h.