|   | 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
Syntaxpublic decimal[] Solve(
	decimal[] value,
	bool inPlace
)
Public Function Solve ( 
	value As Decimal(),
	inPlace As Boolean
) As Decimal()
Parameters
- value
- Type: SystemDecimal
 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: 
DecimalVector 
x so that 
L * L' * x = b.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| ArgumentException | Matrix dimensions do not match. | 
| NonSymmetricMatrixException | Matrix is not symmetric. | 
| NonPositiveDefiniteMatrixException | Matrix is not positive-definite. | 
 See Also
See Also