Uses of Interface
com.opengamma.strata.math.linearalgebra.DecompositionResult
-
Packages that use DecompositionResult Package Description com.opengamma.strata.math.impl.linearalgebra com.opengamma.strata.math.linearalgebra Linear algebra. -
-
Uses of DecompositionResult in com.opengamma.strata.math.impl.linearalgebra
Subinterfaces of DecompositionResult in com.opengamma.strata.math.impl.linearalgebra Modifier and Type Interface Description interface
CholeskyDecompositionResult
Contains the results of Cholesky matrix decomposition.interface
LUDecompositionResult
Contains the results of LU matrix decomposition.interface
QRDecompositionResult
Contains the results of QR matrix decomposition.interface
SVDecompositionResult
Contains the results of SV matrix decomposition.Classes in com.opengamma.strata.math.impl.linearalgebra that implement DecompositionResult Modifier and Type Class Description class
CholeskyDecompositionCommonsResult
Wrapper for results of the Commons implementation of Cholesky decomposition (CholeskyDecompositionCommons
).class
CholeskyDecompositionOpenGammaResult
Results of the OpenGamma implementation of Cholesky decomposition.class
LUDecompositionCommonsResult
Wrapper for results of the Commons implementation of LU decomposition (LUDecompositionCommons
).class
QRDecompositionCommonsResult
Wrapper for results of the Commons implementation of QR Decomposition (QRDecompositionCommons
).class
SVDecompositionCommonsResult
Wrapper for results of the Commons implementation of singular value decompositionSVDecompositionCommons
. -
Uses of DecompositionResult in com.opengamma.strata.math.linearalgebra
Classes in com.opengamma.strata.math.linearalgebra with type parameters of type DecompositionResult Modifier and Type Interface Description interface
Decomposition<R extends DecompositionResult>
Base interface for matrix decompositions, such as SVD and LU.
-