ifftshift
inverse of fftshift
📝Syntax
Y = ifftshift(X)
Y = ifftshift(X, DIM)
📥Input Arguments
Parameter Description
X a vector, matrix or N-D array (double, single, integer).
DIM axes over which to shift.
📤Output Arguments
Parameter Description
Y shifted array.
📄Description

fftshift(X) computes the inverse fftshift.

💡Examples
M = [ 0.,  10.,  20.; 30.,  40., -40.; -30., -20., -10.]
ifftshift(M)
ifftshift(M, 1)
🔗See Also
ifftfftshift
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub