02.10.2019 Views

UploadFile_6417

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

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

232 Chapter 6 IMPLEMENTATION OF DISCRETE-TIME FILTERS<br />

b0 = 1<br />

B =<br />

1.0000 2.8284 4.0000<br />

1.0000 0.7071 0.2500<br />

1.0000 -0.7071 0.2500<br />

1.0000 -2.8284 4.0000<br />

A =<br />

1 0 0<br />

1 0 0<br />

1 0 0<br />

1 0 0<br />

The cascade form structure is shown in Figure 6.13c.<br />

□ EXAMPLE 6.5 For the filter in Example 6.4, what would be the structure if we desire a cascade<br />

form containing linear-phase components with real coefficients?<br />

□<br />

Solution<br />

We are interested in cascade sections that have symmetry and real coefficients.<br />

From the properties of linear-phase FIR filters (see Chapter 7), if such a filter<br />

has an arbitrary zero at z = r̸ θ, then there must be 3 other zeros at (1/r)̸ θ,<br />

r̸ − θ, and (1/r)̸ − θ to have real filter coefficients. We can now make use of<br />

this property. First we will determine the zero locations of the given 8th-order<br />

polynomial. Then we will group 4 zeros that satisfy this property to obtain<br />

one (4th-order) linear-phase section. There are two such sections, which we will<br />

connect in cascade.<br />

MATLAB script:<br />

>> b=[1,0,0,0,16+1/16,0,0,0,1]; broots=roots(b)<br />

broots =<br />

-1.4142 + 1.4142i<br />

-1.4142 - 1.4142i<br />

1.4142 + 1.4142i<br />

1.4142 - 1.4142i<br />

-0.3536 + 0.3536i<br />

-0.3536 - 0.3536i<br />

0.3536 + 0.3536i<br />

0.3536 - 0.3536i<br />

>> B1=real(poly([broots(1),broots(2),broots(5),broots(6)]))<br />

B1 =<br />

1.0000 3.5355 6.2500 3.5355 1.0000<br />

>> B2=real(poly([broots(3),broots(4),broots(7),broots(8)]))<br />

B2 =<br />

1.0000 -3.5355 6.2500 -3.5355 1.0000<br />

The structure is shown in Figure 6.14.<br />

□<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!