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