24.08.2015 Views

endof-

Signals & Systems Front Cover FOURTH.qxp - Orchard Publications

Signals & Systems Front Cover FOURTH.qxp - Orchard Publications

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Other Window Functionssmaller side lobe levels.MATLAB provides the Kaiser window function asw=kaiser(L, beta)and this returns an L−point Kaiser window * in the column vector w.Figure E. 24 shows the Kaiser functions for L = 50 with β = 1 , β = 4 , and β = 9 . These functionswere plotted with the MATLAB script below.plot([kaiser(50, 1), kaiser(50,4), kaiser(50,9)]);10.8β=10.6β=40.40.2β=900 10 20 30 40 50Figure E.24. Kaiser window functions with L=50 and β = 1 , β = 4 , and β = 9Figure E.25 shows the corresponding frequency domain plots for the Kaiser window functions inFigure E.24. These plots were created with the MATLAB script below.n=50;w1 =kaiser(n, 1); w2=kaiser(n,4); w3=kaiser(n,9);[W1,f]=freqz(w1/sum(w1),1,512,2); [W2,f]=freqz(w2/sum(w2),1,512,2);[W3,f]=freqz(w3/sum(w3),1,512,2); plot(f,20*log10(abs([W1 W2 W3])));grid;E.3 Other Window FunctionsTable E.1 lists the window functions we’ve discussed in the previous sections, as well as othersalong with the MATLAB function names and are included in the MATLAB Signal ProcessingToolbox.* When the expression under the radical in (E.12) is negative, the function can be expressed in terms of thehyperbolic sine function.Signals and Systems with MATLAB ® Computing and Simulink ® Modeling, Fourth EditionCopyright © Orchard PublicationsE−15

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!