MatrixDecomposerpublic class CholeskyDecomposer extends Object implements MatrixDecomposer
| Constructor | Description |
|---|---|
CholeskyDecomposer(double relativeSymmetryThreshold,
double absolutePositivityThreshold) |
Creates a Cholesky decomposer with specify threshold for several matrices.
|
| Modifier and Type | Method | Description |
|---|---|---|
DecompositionSolver |
decompose(RealMatrix a) |
Get a solver for finding the A × X = B solution in least square sense.
|
public CholeskyDecomposer(double relativeSymmetryThreshold,
double absolutePositivityThreshold)
relativeSymmetryThreshold - threshold above which off-diagonal
elements are considered too different and matrix not symmetricabsolutePositivityThreshold - threshold below which diagonal
elements are considered null and matrix not positive definitepublic DecompositionSolver decompose(RealMatrix a)
decompose in interface MatrixDecomposera - coefficient matrix A to decomposeCopyright © 2016–2018 Hipparchus.org. All rights reserved.