Taylar window(Kaiser) ,hamming,hanning window?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How difference between these three windows?
If Iam have signal(row vectrors) with length(32) ,How applied this three windows on my signal ?
0 Commenti
Risposta accettata
Wayne King
il 2 Dic 2013
Modificato: Wayne King
il 2 Dic 2013
Assume x is your signal
x = randn(32,1);
x = x.*hamming(length(x));
The differences in the windows are largely about the width of the main lobe differences in the level of the sidelobes. You can launch wvtool to compare the sidelobe behavior.
wvtool(hamming(32))
Note that some important measurements about the window are displayed at the bottom.
3 Commenti
Più risposte (1)
Wayne King
il 2 Dic 2013
Yes, after you window the data, you can obtain the DFT of the signals and then take the modulus squared for the magnitude-squared DFT
w111 =hanning(32) ;
Sig = Sig.*repmat(w111,1,8);
SigDFT = abs(fft(Sig).^2);
Vedere anche
Categorie
Scopri di più su Kaiser in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!