H = hankel(c)H = hankel(c,r)
h(i,j) = r(i+j-1), where vector r completely determines the Hankel matrix.
hankel(c) returns the square Hankel matrix whose first column is c and whose elements are zero below the first anti-diagonal.
hankel(c,r) returns a Hankel matrix whose first column is c and whose last row is r. If the last element of c differs from the first element of r, the last element of c wins the disagreement.
c = 1:3; r = 7:10;h = hankel(c,r)h =1 2 3 82 3 8 93 8 9 10
hadamard, toeplitz, vander(c) Copyright 1994 by The MathWorks, Inc.