MATLAB Function Reference
  Go to function:
    Search    Help Desk 
ifft2    Examples   See Also

Inverse two-dimensional fast Fourier transform

Syntax

Description

Y = ifft2(X) returns the two-dimensional inverse fast Fourier transform of matrix X.

Y = ifft2(X,m,n) returns the m-by-n inverse fast Fourier transform of matrix X.

Examples

For any X, ifft2(fft2(X)) equals X to within roundoff error. If X is real, ifft2(fft2(X)) may have small imaginary parts.

Algorithm

The algorithm for ifft2(X) is the same as the algorithm for fft2(X), except for a sign change and scale factors of [m,n] = size(X). The execution time is fastest when m and n are powers of 2 and slowest when they are large primes.

See Also

dftmtx, freqz, specplot, and spectrum in the Signal Processing Toolbox, and:

fft2        Two-dimensional fast Fourier transform

fftshift    Shift DC component of fast Fourier transform to center of spectrum

ifft        Inverse one-dimensional fast Fourier transform



[ Previous | Help Desk | Next ]