Reduced row echelon form: Difference between revisions

Content added Content deleted
m (→‎{{header|J}}: source control for J scripts is now github)
Line 1,953: Line 1,953:


=={{header|J}}==
=={{header|J}}==
The reduced row echelon form of a matrix can be obtained using the <code>gauss_jordan</code> verb from the [http://www.jsoftware.com/wsvn/addons/trunk/math/misc/linear.ijs linear.ijs script], available as part of the <code>math/misc</code> addon. <code>gauss_jordan</code> and the verb <code>pivot</code> are shown below (in a mediawiki "[Expand]" region) for completeness:
The reduced row echelon form of a matrix can be obtained using the <code>gauss_jordan</code> verb from the [https://github.com/jsoftware/math_misc/blob/master/linear.ijs linear.ijs script], available as part of the <code>math/misc</code> addon. <code>gauss_jordan</code> and the verb <code>pivot</code> are shown below (in a mediawiki "[Expand]" region) for completeness:


'''Implementation:'''
'''Implementation:'''