Member of the matrix class.
c = hankel(a)
c = hankel(a, b)
Generates a Hankel matrix. hankel(a) returns a square Hankel matrix. hankel(a, b) returns a generic Hankel matrix.
| Name | Description |
| a | Specifies the first column of the Hankel matrix. a is a vector. |
| b | Specifies the last row of the Hankel matrix. The first element of b must be the same as the last element of a. Otherwise, LabVIEW ignores the first element of b and uses the last element of a instead. b is a vector. |
| Name | Description |
| c | Returns the Hankel matrix. |
C = hankel([1, 2, 3, 4], [4, 5, 6, 7])