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.

446 Chapter 8 IIR FILTER DESIGN<br />

b0 = 0.0018<br />

B = 1.0000 2.0000 1.0000<br />

1.0000 2.0000 1.0000<br />

A = 1.0000 -1.4996 0.8482<br />

1.0000 -1.5548 0.6493<br />

The system function is<br />

0.0018 ( 1+z −1) 4<br />

H(z) =<br />

(1 − 1.4996z −1 +0.8482z −2 )(1− 1.5548z −1 +0.6493z −2 )<br />

which is the same as in Example 8.18. The frequency-domain plots were shown<br />

in Figure 8.27.<br />

□<br />

□ EXAMPLE 8.23 Digital Chebyshev-II lowpass filter design:<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:<br />

>> T = 1; %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 Prototype Order Calculation:<br />

>> ep = sqrt(10^(Rp/10)-1); %Passband Ripple Factor<br />

>> A = 10^(As/20); %Stopband Attenuation Factor<br />

>> OmegaC = OmegaP; %Analog Prototype Cutoff freq<br />

>> OmegaR = OmegaS/OmegaP; %Analog Prototype Transition Ratio<br />

>> g = sqrt(A*A-1)/ep; %Analog Prototype Intermediate cal.<br />

>> N = ceil(log10(g+sqrt(g*g-1))/log10(OmegaR+sqrt(OmegaR*OmegaR-1)));<br />

>> fprintf(’\n*** Chebyshev-2 Filter Order = %2.0f \n’,N)<br />

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

>> % Digital Chebyshev-II Filter Design:<br />

>> wn = ws/pi; %Digital Stopband freq in pi units<br />

>> [b,a]=cheby2(N,As,wn); [b0,B,A] = dir2cas(b,a)<br />

b0 = 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 />

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!