|
CholeskyDecompositionFSolve Method (Single)
|
Solves a set of equation systems of type A * X = B.
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public float[,] Solve(
float[,] value
)
Public Function Solve (
value As Single(,)
) As Single(,)
Request Example
View SourceParameters
- value
- Type: SystemSingle
Right hand side matrix with as many rows as A and any number of columns.
Return Value
Type:
SingleMatrix
X so that
L * L' * X = B.
Implements
ISolverMatrixDecompositionTSolve(T)Exceptions Exception | Condition |
---|
ArgumentException | Matrix dimensions do not match. |
NonSymmetricMatrixException | Matrix is not symmetric. |
NonPositiveDefiniteMatrixException | Matrix is not positive-definite. |
See Also