Reduced row echelon form: Difference between revisions

Line 2,494:
 
=={{header|Python}}==
 
This closely follows the pseudocode given. If you want accurate results, use the fractions package.
<lang python>def ToReducedRowEchelonForm( M):
if not M: return
Anonymous user