This is documentation for an old release of NumPy (version 1.3.). Read this page Search for this page in the documentation of the latest stable release (version > 1.17).
numpy.fft.ifft2
-
numpy.fft.ifft2(a, s=None, axes=(-2, -1))
Compute the inverse 2d fft of an array.
Parameters: | a : array
input array
s : sequence (int)
shape of the ifft
axis : int
axis over which to compute the ifft
|
Notes
This is really just ifftn with different default behavior.