|
JaggedCholeskyDecompositionSolveForDiagonal 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 double[][] SolveForDiagonal(
double[] diagonal
)
Public Function SolveForDiagonal (
diagonal As Double()
) As Double()()
Request Example
View SourceParameters
- diagonal
- Type: SystemDouble
Diagonal fo the right hand side matrix with as many rows as A.
Return Value
Type:
DoubleMatrix
X so that
L * U * X = B.
Implements
ISolverArrayDecompositionTSolveForDiagonal(T)See Also