diff scripts/linear-algebra/cond.m @ 9051:1bf0ce0930be

Grammar check TexInfo in all .m files Cleanup documentation sources to follow a few consistent rules. Spellcheck was NOT done. (but will be in another changeset)
author Rik <rdrider0-list@yahoo.com>
date Fri, 27 Mar 2009 22:31:03 -0700
parents eb63fbe60fab
children c2923c27c877
line wrap: on
line diff
--- a/scripts/linear-algebra/cond.m
+++ b/scripts/linear-algebra/cond.m
@@ -19,10 +19,10 @@
 
 ## -*- texinfo -*-
 ## @deftypefn {Function File} {} cond (@var{a},@var{p})
-## Compute the @var{p}-norm condition number of a matrix. @code{cond (@var{a})} is
+## Compute the @var{p}-norm condition number of a matrix.  @code{cond (@var{a})} is
 ## defined as @code{norm (@var{a}, @var{p}) * norm (inv (@var{a}), @var{p})}.
 ## By default @code{@var{p}=2} is used which implies a (relatively slow)
-## singular value decomposition. Other possible selections are 
+## singular value decomposition.  Other possible selections are 
 ## @code{@var{p}= 1, Inf, inf, 'Inf', 'fro'} which are generally faster.
 ## @seealso{norm, inv, det, svd, rank}
 ## @end deftypefn