# HG changeset patch # User jwe # Date 1091214616 0 # Node ID cee8d88cf6194f3aa6263692a07e0bdc97680867 # Parent d0b8964b9d4ba3d32a009ef5fcaf8a40f1bd95af [project @ 2004-07-30 19:10:16 by jwe] diff -r d0b8964b9d4b -r cee8d88cf619 scripts/special-matrix/hankel.m --- 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