Reduced row echelon form: Difference between revisions

m
added whitespace to the task's preamble, aligned columns of the matrix.
m (→‎{{header|REXX}}: added/changed comments and whitespace.)
m (added whitespace to the task's preamble, aligned columns of the matrix.)
Line 2:
{{task|Matrices}}
{{omit from|GUISS}}
Show how to compute the '''reduced row echelon form''' t
he '''reduced row echelon form'''
(a.k.a. '''row canonical form''') of a matrix.
 
Line 40 ⟶ 41:
 
For testing purposes, the RREF of this matrix:
<pre>1 2 -1 -4
2 1 3 2 -1 -114
- 2 0 3 -31 22</pre>-11
-2 0 -3 22
</pre>
is:
<pre>1 0 0 -8
0 1 1 0 0 1-8
0 0 1 1 0 -2</pre> 1
0 0 1 -2
</pre>
<br><br>
 
=={{header|360 Assembly}}==