hamming window matlab code
24 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abdulkareem
am 11 Dez. 2012
Bearbeitet: Walter Roberson
am 7 Jun. 2020
hi evrybody i need matlab code for hamming window
1 Kommentar
qamar alshraideh
am 19 Dez. 2016
Bearbeitet: Walter Roberson
am 7 Jun. 2020
Built in function ::
M=30; % length
wc1=.05*pi;
n=0:1:(M-1);
h1 = (wc1/pi)*sinc(wc1/pi*n);
ham=h1.*hamming(M)'; %here we dont need to shift
x=n/pi;
x=x/pi;
plot(x,abs(fft(ham)));
title('Magnitude Response');
xlabel('frequency in pi units')
Akzeptierte Antwort
John Petersen
am 12 Dez. 2012
if x is an n-element input signal and t is the time scale
w = 0.54 - 0.46*cos(2*pi*t/(n-1));
wx = x.*w;
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Hamming finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!