You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
This code uses the Fourier shift theorem to cyclically shift 1D signals by an arbitrary amount. Both integer and non-integer shifts work.
It also supports padding the signal with zeros so that the shift appears non-cyclic (although it really isn't). If this is done then the shift amount is clamped so that the signal can't cycle round again.
It works with signals of any length and is completely vectorised.
Usage:
y = FourierShift(x, delta, zero_pad)
x = input vector (column or row)
y = output column vector
delta = shift amount in samples
zero_pad (optional) = if set to 'pad' then it simulates non-cyclic shifting
Example:
for ii = -50:0.4:50
plot(FourierShift(sinc(-2:0.1:2), ii, 'pad'))
pause(0.1);
end
Cite As
Tim (2026). 1D Fourier shift (https://www.mathworks.com/matlabcentral/fileexchange/23414-1d-fourier-shift), MATLAB Central File Exchange. Retrieved .
General Information
- Version 1.1.0.0 (1.89 KB)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
