Click or drag to resize
Accord.NET (logo)

CholeskyDecompositionFSolve Method (Single, Boolean)

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,
	bool inPlace
)
Request Example View Source

Parameters

value
Type: SystemSingle
Right hand side column vector with as many rows as A.
inPlace
Type: SystemBoolean
True to compute the solving in place, false otherwise.

Return Value

Type: Single
Vector x so that L * L' * x = b.
Exceptions
ExceptionCondition
ArgumentExceptionMatrix dimensions do not match.
NonSymmetricMatrixExceptionMatrix is not symmetric.
NonPositiveDefiniteMatrixExceptionMatrix is not positive-definite.
See Also