Click or drag to resize
Accord.NET (logo)

LuDecompositionD Constructor (Decimal[,] , Boolean)

Constructs a new LU decomposition.

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public LuDecompositionD(
	decimal[,] value,
	bool transpose
)
Request Example View Source

Parameters

value
Type:System.Decimal[,]
The matrix A to be decomposed.
transpose
Type: System.Boolean
True if the decomposition should be performed on the transpose of A rather than A itself, false otherwise. Default is false.
See Also