Member of the transforms class.
c = hilbert(a)
c = hilbert(a, b)
Computes the Hilbert transform.
| Name | Description |
| a | Specifies a vector or matrix. |
| b | Controls zero-padding to the signal. b is a positive integer. |
| Name | Description |
| c | Returns the Hilbert transform of a. If a is a vector, c = hilbert(a) returns the original fast Hilbert transform. If a is a matrix, c = hilbert(a) returns the column-wise Hilbert transforms of all columns of a. c is a vector or matrix. |
A = [1, 2, 3, 4, 4, 3, 2, 1]
C = hilbert(A, 8)