Fourier Theorems for the DFT
Fourier Theorems
Downsampling Theorem (Aliasing Theorem)
Illustration of the Downsampling/Aliasing Theorem in MatlabSearch Mathematics of the DFT
Would you like to be notified by email when Julius Orion Smith III publishes a new entry into his blog?
>> N=4; >> x = 1:N; >> X = fft(x); >> x2 = x(1:2:N); >> fft(x2) % FFT(Downsample(x,2)) ans = 4 -2 >> (X(1:N/2) + X(N/2 + 1:N))/2 % (1/2) Alias(X,2) ans = 4 -2
