MATLAB: Taylar window(Kaiser) ,hamming,hanning window

hamminghanningkaiserMATLAB

How difference between these three windows?
If Iam have signal(row vectrors) with length(32) ,How applied this three windows on my signal ?

Best Answer

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.