|
JaggedCholeskyDecompositionDSolveForDiagonal Method
|
Solves a set of equation systems of type A * X = B where B is a diagonal matrix.
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public decimal[][] SolveForDiagonal(
decimal[] diagonal
)
Public Function SolveForDiagonal (
diagonal As Decimal()
) As Decimal()()
Request Example
View SourceParameters
- diagonal
- Type: SystemDecimal
Diagonal fo the right hand side matrix with as many rows as A.
Return Value
Type:
DecimalMatrix
X so that
L * U * X = B.
Implements
ISolverArrayDecompositionTSolveForDiagonal(T)See Also