Package | Description |
---|---|
fr.cnes.sirius.patrius.math.linear |
Modifier and Type | Class and Description |
---|---|
class |
CholeskyDecomposition
Calculates the Cholesky decomposition of a matrix.
|
class |
EigenDecomposition
Calculates the eigen decomposition of a real matrix.
|
class |
LUDecomposition
Calculates the LUP-decomposition of a square matrix.
|
class |
QRDecomposition
Calculates the QR-decomposition of a matrix.
|
class |
SingularValueDecomposition
Calculates the compact Singular Value Decomposition of a matrix.
|
class |
UDDecompositionImpl
Calculates the UD decomposition of a matrix.
|
Modifier and Type | Method and Description |
---|---|
Decomposition |
RealMatrix.getDefaultDecomposition()
Returns default decomposition (used by #
RealMatrix.getInverse() method). |
Decomposition |
AbstractRealMatrix.getDefaultDecomposition()
Returns default decomposition (used by #
RealMatrix.getInverse() method). |
Modifier and Type | Method and Description |
---|---|
SymmetricMatrix |
SymmetricMatrix.getInverse(Decomposition decomposition)
Get the inverse matrix computed with the given decomposition algorithm.
|
DecomposedSymmetricPositiveMatrix |
DecomposedSymmetricPositiveMatrix.getInverse(Decomposition decomposition)
Get the inverse of the decomposed matrix given as input.
|
RealMatrix |
RealMatrix.getInverse(Decomposition decomposition)
Get the inverse (or pseudo-inverse) matrix computed with the given decomposition algorithm.
|
DiagonalMatrix |
DiagonalMatrix.getInverse(Decomposition decomposition)
Optimized method for
DiagonalMatrix matrix. |
RealMatrix |
AbstractRealMatrix.getInverse(Decomposition decomposition)
Get the inverse (or pseudo-inverse) matrix computed with the given decomposition algorithm.
|
SymmetricPositiveMatrix |
SymmetricPositiveMatrix.getInverse(Decomposition decomposition)
Get the inverse matrix computed with the given decomposition algorithm.
|
ArrayRowSymmetricMatrix |
ArrayRowSymmetricMatrix.getInverse(Decomposition decomposition)
Get the inverse (or pseudo-inverse) matrix computed with the given decomposition algorithm.
|
void |
RealMatrix.setDefaultDecomposition(Decomposition defaultDecomposition)
Sets the default decomposition which will be used by the
getInverse() method to
compute the matrix inverse. |
void |
AbstractRealMatrix.setDefaultDecomposition(Decomposition defaultDecomposition)
Sets the default decomposition which will be used by the
getInverse() method to
compute the matrix inverse. |
Copyright © 2020 CNES. All rights reserved.