|
LuDecomposition Constructor (Double, Boolean)
|
Constructs a new LU decomposition.
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public LuDecomposition(
double[,] value,
bool transpose
)
Public Sub New (
value As Double(,),
transpose As Boolean
)
Request Example
View SourceParameters
- value
- Type: SystemDouble
The matrix A to be decomposed. - transpose
- Type: SystemBoolean
True if the decomposition should be performed on
the transpose of A rather than A itself, false otherwise. Default is false.
See Also