public interface LUDecompositionResult extends DecompositionResult
| Modifier and Type | Method and Description |
|---|---|
double |
getDeterminant()
Return the determinant of the matrix.
|
DoubleMatrix |
getL()
Returns the $\mathbf{L}$ matrix of the decomposition.
|
DoubleMatrix |
getP()
Returns the rows permutation matrix, $\mathbf{P}$.
|
int[] |
getPivot()
Returns the pivot permutation vector.
|
DoubleMatrix |
getU()
Returns the $\mathbf{U}$ matrix of the decomposition.
|
solve, solve, solveDoubleMatrix getL()
$\mathbf{L}$ is a lower-triangular matrix.
DoubleMatrix getU()
$\mathbf{U}$ is an upper-triangular matrix.
DoubleMatrix getP()
P is a sparse matrix with exactly one element set to 1.0 in each row and each column, all other elements being set to 0.0.
The positions of the 1 elements are given by the pivot permutation vector.
getPivot()int[] getPivot()
double getDeterminant()
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.