changeset 4922:cee8d88cf619

[project @ 2004-07-30 19:10:16 by jwe]
author jwe
date Fri, 30 Jul 2004 19:10:16 +0000
parents d0b8964b9d4b
children b11223097ad4
files scripts/special-matrix/hankel.m
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/special-matrix/hankel.m	Wed Jul 28 15:53:46 2004 +0000
+++ b/scripts/special-matrix/hankel.m	Fri Jul 30 19:10:16 2004 +0000
@@ -22,8 +22,8 @@
 ## Return the Hankel matrix constructed given the first column @var{c}, and
 ## (optionally) the last row @var{r}.  If the last element of @var{c} is
 ## not the same as the first element of @var{r}, the last element of
-## @var{c} is used.  If the second argument is omitted, the last row is
-## taken to be the same as the first column.
+## @var{c} is used.  If the second argument is omitted, it is assumed to
+## be a vector of zeros with the same size as @var{c}.
 ##
 ## A Hankel matrix formed from an m-vector @var{c}, and an n-vector
 ## @var{r}, has the elements
@@ -38,8 +38,8 @@
 ##
 ## @example
 ## @group
-## H (i, j) = c (i+j-1),  i+j-1 <= m;
-## H (i, j) = r (i+j-m),  otherwise
+## H(i,j) = c(i+j-1),  i+j-1 <= m;
+## H(i,j) = r(i+j-m),  otherwise
 ## @end group
 ## @end example
 ## @end ifinfo