Function Matrix.rowEchelon

Returns the matrix in row-echelon form In row-echelon form, the diagonal elements are equal to one and all elements below the diagonal are zero This method uses the Gauss-Jordan algorithm, which has arithmetic complexity O(n^3) Be wary of truncation for integer matrices

Matrix!(T,rows,columns) rowEchelon() @property;