02.10.2019 Views

UploadFile_6417

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

440 Chapter 8 IIR FILTER DESIGN<br />

Solution<br />

MATLAB script:<br />

>> % Digital Filter Specifications:<br />

>> wp = 0.2*pi; % digital Passband freq in rad<br />

>> ws = 0.3*pi; % digital Stopband freq in rad<br />

>> Rp = 1; % Passband ripple in dB<br />

>> As = 15; % Stopband attenuation in dB<br />

>> % Analog Prototype Specifications: Inverse mapping for frequencies<br />

>> T = 1; Fs = 1/T; % Set T=1<br />

>> OmegaP = (2/T)*tan(wp/2); % Prewarp Prototype Passband freq<br />

>> OmegaS = (2/T)*tan(ws/2); % Prewarp Prototype Stopband freq<br />

>> % Analog Chebyshev-2 Prototype Filter Calculation:<br />

>> [cs,ds] = afd_chb2(OmegaP,OmegaS,Rp,As);<br />

*** Chebyshev-2 Filter Order = 4<br />

>> % Bilinear transformation:<br />

>> [b,a] = bilinear(cs,ds,Fs); [C,B,A] = dir2cas(b,a)<br />

C = 0.1797<br />

B = 1.0000 0.5574 1.0000<br />

1.0000 -1.0671 1.0000<br />

A = 1.0000 -0.4183 0.1503<br />

1.0000 -1.1325 0.7183<br />

The desired filter is again a 4th-order filter with system function<br />

H(z) = 0.1797 ( 1+0.5574z −1 + z −2)( 1 − 1.0671z −1 + z −2)<br />

(1 − 0.4183z −1 +0.1503z −2 )(1− 1.1325z −1 +0.7183z −2 )<br />

The frequency response plots are given in Figure 8.28. Note that the bilinear<br />

transformation has properly designed the Chebyshev-II digital filter. □<br />

□ EXAMPLE 8.20 Design the digital elliptic filter of Example 8.14. The specifications are<br />

ω p =0.2π, R p =1dB<br />

ω s =0.3π, A s =15dB<br />

Solution<br />

MATLAB script:<br />

>> % Digital Filter Specifications:<br />

>> wp = 0.2*pi; % digital Passband freq in rad<br />

>> ws = 0.3*pi; % digital Stopband freq in rad<br />

>> Rp = 1; % Passband ripple in dB<br />

>> As = 15; % Stopband attenuation in dB<br />

>> % Analog Prototype Specifications: Inverse mapping for frequencies<br />

>> T = 1; Fs = 1/T; % Set T=1<br />

Copyright 2010 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part. Due to electronic rights, some third party content may be suppressed from the eBook and/or eChapter(s).<br />

Editorial review has deemed that any suppressed content does not materially affect the overall learning experience. Cengage Learning reserves the right to remove additional content at any time if subsequent rights restrictions require it.

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

Saved successfully!

Ooh no, something went wrong!