Beispiel #1
0
 public Matrix<T> getReducedRowEchelonForm() {
   Matrix<T> reducedRowEchelonForm = copy();
   reducedRowEchelonForm.toReducedRowEchelonForm();
   return reducedRowEchelonForm;
 }