|
ReducedRowEchelonForm Constructor
|
Reduces a matrix to reduced row Echelon form.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public ReducedRowEchelonForm(
double[,] value,
bool inPlace = false
)
Public Sub New (
value As Double(,),
Optional inPlace As Boolean = false
)
Request Example
View SourceParameters
- value
- Type: SystemDouble
The matrix to be reduced. - inPlace (Optional)
- Type: SystemBoolean
Pass to perform the reduction in place. The matrix
value will be destroyed in the process, resulting in less
memory consumption.
See Also