Click or drag to resize
Accord.NET (logo)

JaggedSingularValueDecompositionSolveForDiagonal 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
)
Request Example View Source

Parameters

diagonal
Type: SystemDouble
Diagonal fo the right hand side matrix with as many rows as A.

Return Value

Type: Double
Matrix X so that L * U * X = B.

Implements

ISolverArrayDecompositionTSolveForDiagonal(T)
See Also