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.
isspd
method has been removed, the constructors of implementation classes being expected to throw {@link NotPositiveDefiniteMatrixException} when a matrix cannot be decomposed,solve
method has been replaced by a {@link #getSolver() getSolver} method and the equivalent method provided bythe returned {@link DecompositionSolver}.
|
|
|
|