comparison scripts/linear-algebra/rref.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents fd0a3ac60b0e
children 7ef7e20057fa
comparison
equal deleted inserted replaced
11586:12df7854fa7c 11587:c792872f8942
21 ## 21 ##
22 ## Returns the reduced row echelon form of @var{A}. @var{tol} defaults 22 ## Returns the reduced row echelon form of @var{A}. @var{tol} defaults
23 ## to @code{eps * max (size (@var{A})) * norm (@var{A}, inf)}. 23 ## to @code{eps * max (size (@var{A})) * norm (@var{A}, inf)}.
24 ## 24 ##
25 ## Called with two return arguments, @var{k} returns the vector of 25 ## Called with two return arguments, @var{k} returns the vector of
26 ## "bound variables", which are those columns on which elimination 26 ## "bound variables", which are those columns on which elimination
27 ## has been performed. 27 ## has been performed.
28 ## 28 ##
29 ## @end deftypefn 29 ## @end deftypefn
30 30
31 ## Author: Paul Kienzle <pkienzle@users.sf.net> 31 ## Author: Paul Kienzle <pkienzle@users.sf.net>