public interface CholeskyDecomposition
This interface is based on the class with similar name from the JAMA library, with the following changes:
getLT
method has been added,isspd
method has been removed, the constructors of
implementation classes being expected to throw NotPositiveDefiniteMatrixException
when a matrix cannot be decomposed,getDeterminant
method has been added,solve
method has been replaced by a getSolver
method and the equivalent method provided by
the returned DecompositionSolver
.Modifier and Type | Method and Description |
---|---|
double |
getDeterminant()
Return the determinant of the matrix
|
RealMatrix |
getL()
Returns the matrix L of the decomposition.
|
RealMatrix |
getLT()
Returns the transpose of the matrix L of the decomposition.
|
DecompositionSolver |
getSolver()
Get a solver for finding the A × X = B solution in least square sense.
|
RealMatrix getL()
L is an lower-triangular matrix
RealMatrix getLT()
LT is an upper-triangular matrix
double getDeterminant()
DecompositionSolver getSolver()
Copyright © 2010 - 2020 Adobe. All Rights Reserved