Reduced row echelon form: Difference between revisions

m
m (Move pseudocode here from WP)
Line 645:
 
=={{header|Python}}==
This closely follows the pseudocode given in the link.
<lang python>def ToReducedRowEchelonForm( M):
if not M: return
Anonymous user