Member of the transforms class.
e = iczt(a)
e = iczt(a, b)
e = iczt(a, b, c)
e = iczt(a, b, c, d)
Computes the Inverse Chirp-Z transform.
| Name | Description |
| a | Specifies a vector or matrix. |
| b | Specifies the length of the transform. b is an integer. The default is length(a). |
| c | Specifies the complex ratio (complex scalar) used in the Inverse Chirp-Z transform. Depending on the magnitude of c, LabVIEW generates either arcs or spirals as sampling points. The default is exp(-2*pi*j/b). |
| d | The starting point (complex scalar) of the Inverse Chirp-Z transform. The default is 1. |
| Name | Description |
| e | Returns the Inverse Chirp-Z transform of a. If a is a matrix, e returns the column-wise Inverse Chirp-Z transforms of all columns of a. e is a vector or matrix. |
A = [1, 2, 3, 4, 4, 3, 2, 1]
C = czt(A, 8)
D = iczt(C, 8)