jax.numpy.fft.ifftshift

Contents

jax.numpy.fft.ifftshift#

jax.numpy.fft.ifftshift(x, axes=None)[source]#

The inverse of fftshift. Although identical for even-length x, the

LAX-backend implementation of numpy.fft.ifftshift().

Original docstring below.

functions differ by one sample for odd-length x.

Parameters:
  • x (array_like) – Input array.

  • axes (int or shape tuple, optional) – Axes over which to calculate. Defaults to None, which shifts all axes.

Returns:

y – The shifted array.

Return type:

ndarray