

Public Member Functions | |
| CholeskyDecomposition (Matrix Arg) | |
| boolean | isSPD () |
| Matrix | getL () |
| Matrix | solve (Matrix B) |
Cholesky Decomposition.
For a symmetric, positive definite matrix A, the Cholesky decomposition is an lower triangular matrix L so that A = L*L'.
If the matrix is not symmetric or positive definite, the constructor returns a partial decomposition and sets an internal flag that may be queried by the isSPD() method.
| Jama.CholeskyDecomposition.CholeskyDecomposition | ( | Matrix | Arg | ) |
Cholesky algorithm for symmetric and positive definite matrix.
| A | Square, symmetric matrix. |
| Matrix Jama.CholeskyDecomposition.getL | ( | ) |
Return triangular factor.
| boolean Jama.CholeskyDecomposition.isSPD | ( | ) |
Is the matrix symmetric and positive definite?
1.8.7