www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/ComputeHankelMatrixExample.m

    %% Compute Hankel Matrix
% Create the Hankel matrix whose first column is |c| and whose last row is
% |r|.
c = 1:3;
r = 3:6;
h = hankel(c,r)