C# Class Accord.Math.ReducedRowEchelonForm

Reduced row Echelon form
ファイルを表示 Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
ReducedRowEchelonForm ( double value, bool inPlace = false ) : System

Reduces a matrix to reduced row Echelon form.

Private Methods

Method Description
count ( ) : int

Method Details

ReducedRowEchelonForm() public method

Reduces a matrix to reduced row Echelon form.
public ReducedRowEchelonForm ( double value, bool inPlace = false ) : System
value double The matrix to be reduced.
inPlace bool /// Pass to perform the reduction in place. The matrix /// will be destroyed in the process, resulting in less /// memory consumption.
return System