This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Implementation of the Gaussian Elimination Algorithm for finding the row-reduced echelon form of a given matrix. | |
No pivoting is done. | |
Requires Python 3 due to the different behaviour of the division operation in earlier versions of Python. | |
Released under the Public Domain (if you want it - you probably don't) | |
""" | |
def like_a_gauss(mat): | |
""" | |
Changes mat into Reduced Row-Echelon Form. |