Owning Class: transforms
Requires: MathScript RT Module
d = ifft2d(a)
d = ifft2d(a, b, c)
Legacy Name: ifft2
Returns the 2D inverse fast Fourier transform.
| Name | Description |
|---|---|
| a | Specifies a matrix. |
| b | Controls zero-padding of the first dimension to the signal. b is an integer and typically is a power of 2. |
| c | Controls zero-padding of the second dimension to the signal. c is an integer and typically is a power of 2. |
| Name | Description |
|---|---|
| d | Returns the 2D inverse fast Fourier transform of a. d = ifft2d(a) returns the original discrete 2D inverse fast Fourier transform. d is a matrix. |
A = [1, 2, 3, 4; 4, 3, 2, 1]
C = ifft2d(A)