Click or drag to resize
Accord.NET (logo)

LuDecompositionF. Solve Method (Single[,] )

Solves a set of equation systems of type A * X = B.

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public float[,] Solve(
	float[,] value
)
Request Example View Source

Parameters

value
Type:System.Single[,]
Right hand side matrix with as many rows as A and any number of columns.

Return Value

Type:Single[,]
Matrix X so that L * U * X = B.

Implements

ISolverMatrixDecomposition<T>.Solve(T[,])
See Also