Y = fftshift(X)
Y = fftshift(X, DIM)
| Paramètre | Description |
|---|---|
| X | un vecteur, une matrice ou un tableau N-D (double, single, integer). |
| DIM | axes sur lesquelles effectuer le décalage. |
| Paramètre | Description |
|---|---|
| Y | tableau décalé. |
fftshift(X) décale la composante fréquence nulle au centre du spectre.
M = [ 0., 10., 20.; 30., 40., -40.; -30., -20., -10.]
fftshift(M)
fftshift(M, 1)
| Version | Description |
|---|---|
| 1.0.0 | version initiale |