| << fftn | FFTW | fftw >> |
| Y = fftshift(X) |
| Y = fftshift(X, DIM) |
a vector, matrix or N-D array (double, single, integer).
axes over which to shift.
shifted array.
fftshift(X) shift the zero-frequency component to the center of the spectrum.
M = [ 0., 10., 20.; 30., 40., -40.; -30., -20., -10.]
fftshift(M)
fftshift(M, 1)
| Version | Description |
|---|---|
| 1.0.0 | initial version |
Allan CORNET