|
JaggedCholeskyDecompositionSolve Method (Double)
|
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 double[] Solve(
double[] value
)
Public Function Solve (
value As Double()
) As Double()
Request Example
View SourceParameters
- value
- Type: SystemDouble
Right hand side column vector with as many rows as A.
Return Value
Type:
DoubleVector
x so that
L * L' * x = b.
Implements
ISolverArrayDecompositionTSolve(T)Exceptions Exception | Condition |
---|
ArgumentException | Matrix dimensions do not match. |
NonSymmetricMatrixException | Matrix is not symmetric. |
NonPositiveDefiniteMatrixException | Matrix is not positive-definite. |
See Also