Function Matrix.reducedRowEchelon

Returns the matrix in row-echelon form In reduced row-echelon form, the diagonal elements are equal to one and all elements below and above 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) reducedRowEchelon() @property;