Click or drag to resize
Accord.NET (logo)

CholeskyDecompositionDSolve Method (Decimal, 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 decimal[,] Solve(
	decimal[,] value,
	bool inPlace
)
Request Example View Source

Parameters

value
Type: SystemDecimal
Right hand side matrix with as many rows as A and any number of columns.
inPlace
Type: SystemBoolean
True to compute the solving in place, false otherwise.

Return Value

Type: Decimal
Matrix 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