public interface DecompositionResult
The decomposed matrices (such as the L and U matrices for LU decomposition) are stored in this class. There are methods that allow calculations to be performed using these matrices.
| Modifier and Type | Method and Description |
|---|---|
double[] |
solve(double[] input)
Solves $\mathbf{A}x = b$ where $\mathbf{A}$ is a (decomposed) matrix and $b$ is a vector.
|
default DoubleArray |
solve(DoubleArray input)
Solves $\mathbf{A}x = b$ where $\mathbf{A}$ is a (decomposed) matrix and $b$ is a vector.
|
DoubleMatrix |
solve(DoubleMatrix input)
Solves $\mathbf{A}x = \mathbf{B}$ where $\mathbf{A}$ is a (decomposed) matrix and $\mathbf{B}$ is a matrix.
|
default DoubleArray solve(DoubleArray input)
input - the vector to calculate withdouble[] solve(double[] input)
input - the vector to calculate withDoubleMatrix solve(DoubleMatrix input)
input - the matrix to calculate withCopyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.