Click or drag to resize
Accord.NET (logo)

JaggedSingularValueDecomposition. SolveForDiagonal 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:System.Double[]
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

ISolverArrayDecomposition<T>.SolveForDiagonal(T[])
See Also