HankelMatrix
HankelMatrix(n)gives a Hankel matrix with the dimension
n.
HankelMatrix(vector)gives a Hankel matrix with the elements of the
vector.
HankelMatrix(vector1, vector2)gives a Hankel matrix with the combined elements of the
vector1andvector2.
Examples
>> HankelMatrix({f, a, b, c, d},{d, y, z}){{f,a,b}, {a,b,c}, {b,c,d}, {c,d,y}, {d,y,z}}