| C Math Library Reference | ![]() |
C Prototype
mxArray *mlfHankel(mxArray *c, mxArray *r);
C Syntax
#include "matlab.h" mxArray *c; /* Required input argument(s) */ mxArray *r; /* Optional input argument(s) */ mxArray *H = NULL; /* Return value */ mlfAssign(&H, mlfHankel(c,NULL)); mlfAssign(&H, mlfHankel(c,r));
MATLAB Syntax
H = hankel(c) H = hankel(c,r)
See Also
hankel Calling ConventionsDescription
H = hankel(c)
returns the square Hankel matrix whose first column is c and whose elements are zero below the first anti-diagonal.
H = 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 prevails.
| mlfHadamard | mlfHess | ![]() |