Fourier Transform of window functions

20 vues (au cours des 30 derniers jours)
Chandi
Chandi le 18 Nov 2022
Commenté : Mathieu NOE le 21 Nov 2022
Hello!
I am trying to figure out how to graph the fourier transform of different window functions but i cant seem to get the correct image like the one i attached for my fft window graph.

Réponse acceptée

Mathieu NOE
Mathieu NOE le 18 Nov 2022
hello
maybe this can help you
wL = 30; % window length
win1 = hanning(wL);
win1 = win1/sum(win1); % normalize
win2 = triang(wL);
win2 = win2/sum(win2); % normalize
nfft = 256;
S1 = fft(win1,nfft);
S2 = fft(win2,nfft);
f = 1:nfft/2+1;
plot(f,20*log10(abs(S1(1:nfft/2+1))),f,20*log10(abs(S2(1:nfft/2+1))));
ylabel('dB gain')
xlabel('fft bins');
legend('hanning','triangle');
  2 commentaires
Chandi
Chandi le 18 Nov 2022
Thank you that is very helpful! :)
Mathieu NOE
Mathieu NOE le 21 Nov 2022
My pleasure !

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by