jax.numpy.fft.fftshift
Warning
This page was created from a pull request (#9655).
jax.numpy.fft.fftshiftΒΆ
- jax.numpy.fft.fftshift(x, axes=None)[source]ΒΆ
Shift the zero-frequency component to the center of the spectrum.
LAX-backend implementation of
fftshift()
.Original docstring below.
This function swaps half-spaces for all axes listed (defaults to all). Note that
y[0]
is the Nyquist component only iflen(x)
is even.