rref
Mathematical Programming with Python
https://people.sc.fsu.edu/~jburkardt/classes/...
python_2025/rref/rref.html
rref:
interactive Elementary Row Operations (ERO) to transform
a matrix to Reduced Row Echelon Form (RREF).
Lecture notes:
-
is_rref.py,
is_rref(A) reports whether matrix A is in reduced row echelon form.
-
rref_compute.py,
RREF=rref_compute(A) returns the reduced row echelon form of matrix A.
Last revised on 01 March 2025.