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