changeset 3966:c5cf860b756d

[project @ 2002-06-29 02:52:28 by jwe]
author jwe
date Sat, 29 Jun 2002 02:52:28 +0000
parents edd758a7ca8d
children 15a0aa0b6c18
files scripts/linear-algebra/norm.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/linear-algebra/norm.m	Fri Jun 28 19:00:56 2002 +0000
+++ b/scripts/linear-algebra/norm.m	Sat Jun 29 02:52:28 2002 +0000
@@ -26,14 +26,14 @@
 ##
 ## @table @asis
 ## @item @var{p} = @code{1}
-## 1-norm, the largest column sum of @var{a}.
+## 1-norm, the largest column sum of the absolute values of @var{a}.
 ##
 ## @item @var{p} = @code{2}
 ## Largest singular value of @var{a}.
 ##
 ## @item @var{p} = @code{Inf}
 ## @cindex infinity norm
-## Infinity norm, the largest row sum of @var{a}.
+## Infinity norm, the largest row sum of the absolute values of @var{a}.
 ##
 ## @item @var{p} = @code{"fro"}
 ## @cindex Frobenius norm