SHOGUN
4.2.0
|
Generic class which is specialized for different backends to compute the cholesky decomposition of a dense matrix.
Definition at line 53 of file Cholesky.h.
Public Types | |
typedef Matrix::Scalar | T |
typedef SGMatrix< T > | ReturnType |
Static Public Member Functions | |
static ReturnType | compute (Matrix A, bool lower) |
typedef SGMatrix<T> ReturnType |
Return type
Definition at line 60 of file Cholesky.h.
typedef Matrix::Scalar T |
Scalar type
Definition at line 57 of file Cholesky.h.
|
static |
Compute the cholesky decomposition \(A = L L^{*}\) or \(A = U^{*} U\) of a Hermitian positive definite matrix
A | - the matrix whose cholesky decomposition is to be computed |
lower | - whether to compute the upper or lower triangular Cholesky factorization (default:lower) |