Member of the transforms class.
d = ifft2(a)
d = ifft2(a, b, c)
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 = ifft2(a) returns the original discrete 2D inverse fast Fourier transform. d is a matrix. |
A = [1, 2, 3, 4; 4, 3, 2, 1]
C = ifft2(A)