bundles / numpy latest / numpy / fft / fftshift
_ArrayFunctionDispatcher
numpy.fft:fftshift
source: build-install/usr/lib/python3.14/site-packages/numpy/fft/_helper.py :19
Signature
def fftshift ( x , axes = None ) Summary
Shift the zero-frequency component to the center of the spectrum.
Extended Summary
This function swaps half-spaces for all axes listed (defaults to all). Note that y[0] is the Nyquist component only if len(x) is even.
Parameters
x: array_likeInput array.
axes: int or shape tuple, optionalAxes over which to shift. Default is None, which shifts all axes.
Returns
y: ndarrayThe shifted array.
Examples
import numpy as np freqs = np.fft.fftfreq(10, 0.1) freqs np.fft.fftshift(freqs)✓
freqs = np.fft.fftfreq(9, d=1./9).reshape(3, 3) freqs np.fft.fftshift(freqs, axes=(1,))✓
See also
- ifftshift
The inverse of
fftshift.
Aliases
-
numpy.fft.fftshift