Calculates the row echelon form of a matrix (performs Gaussian elimination on it).
The matrix
const result = Chalkboard.matr.Gaussian([[1, 2, 1], [2, 4, 0], [3, 6, 3]]); // Returns its row-echelon form Copy
const result = Chalkboard.matr.Gaussian([[1, 2, 1], [2, 4, 0], [3, 6, 3]]); // Returns its row-echelon form
Calculates the row echelon form of a matrix (performs Gaussian elimination on it).