Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 40

Chapter 6.

Digital Filter Structures

Gao Xinbo
School of E.E., Xidian Univ.
xbgao@ieee.org
xbgao@lab202.xidian.edu.cn
http://see.xidian.edu.cn/teach/matlabdsp/
Introduction
 In earlier chapters we studied the theory of discrete
systems in both the time and frequency domains.
 We will now use this theory for the processing of
digital signals.
 To process signals, we have to design and implement
systems called filters.
 The filter design issue is influenced by such factors as
 The type of the filter: IIR or FIR
 The form of its implementation: structures
 Different filter structures dictate different design strategies.
Introduction
 IIR filters are characterized by infinite-duration
impulse response. Some of these impulse
responses can be modeled by
 Rational system functions
 Difference equations
 ARMA or recursive filters
 We will treat FIR filter separately from IIR
filters for both design and implementation
purposes.
Introduction
 Since our filters are LTI systems, we need the
following three elements to describe digital filter
structures.
 Adder
 Multiplier (Gain)
 Delay element (shift or memory)

x1(n)
a
x1(n)+x2(n) x(n) ax(n)

x2(n)
1/z
x(n) x(n-1)
IIR Filter Structures
 The system function of an IIR filter is given by
M

B( z )  n
b z n
b0  b1 z 1    bM z  M
H ( z)   n 0
 1 N
; a0  1
A( z ) N
1  a1 z    a N z
 n
a z n

n 0

The order of such an IIR filter is called N if aN~=0.


The difference equation representation of an IIR filter is expressed
as M N
y ( n)   bm x(n  m)   am y (n  m)
m 0 m 1
Three different structures can be used to
implement an IIR filter:
 Direct form
 In this form, there are two parts to this filter, the moving average part and the
recursive part (or the numerator and denominator parts)
 Two version: direct form I and direct form II
 Cascade form
 The system function H(z) is factored into smaller second-order sections, called
biquads. H(z) is then represented as a product of these biquads.
 Each biquad is implemented in a direct form, and the entire system function is
implemented as a cascade of biquad sections.
 Parallel form
 H(z) is represented as a sum of smaller second-order sections.
 Each section is again implemented in a direct form.
 The entire system function is implemented as a parallel network of sections.
Direct Form I Structure
 As the name suggests, the difference equation is implemented
as given using delays, multipliers, and adders.
 For the purpose of illustration, Let M=N=2,
y (n)  b0 x(n)  b1 x(n  1)  b2 x(n  2)  a1 y (n  1)  a2 y (n  2)
x(n) b0 y(n)

1/z -a1 1/z


b1
1/z
b2 -a2 1/z

H1(z) H2(z)
Direct Form II Structure
x(n) b0 y(n)

-a1 1/z 1/z


The b1
commutative -a2 1/z
1/z
b2
law of the
convolution
H2(z) H1(z)

x(n) b0 y(n)

-a1 1/z
b1

-a2 1/z b2

H(z)

Direct Form II structure


Matlab Implementation
 In Matlab the direct from structure is described
by two row vectors:
 b containing the {bn} coefficients and a
containing the {an} coefficients.
 The structure is implemented by the filter
function, which is discussed in Chapter 2.
Cascade Form
 In this form the system function H(z) is written
as a product of second-order section with real
coefficients.
 This is done by factoring the numerator and
denominator polynomials into their respective
roots and then combining either a complex
conjugate root pair or any two real roots into
second-order polynomials.
Cascade Form
 We assume that N is an even integer. Then
b0  b1 z 1    bN z  N
H ( z) 
1  a1 z 1    a N z  N
1  bb10 z 1    bbN0 z  N
 b0
1  a1 z 1    a N z  N
K 1  Bk ,1 z 1  Bk , 2 z  2
 b0 
k 1 1  Ak ,1 z 1  Ak , 2 z  2
Where, K is equal to N/2, and Bk,1, Bk,2, Ak,1, Ak,2 are real numbers
representing the coefficients of second-order section.
Biquad Section
1 2
Yk 1 ( z ) 1  Bk ,1 z  Bk , 2 z
H k ( z)   1 2
, k  1,2, , K
Yk ( z ) 1  Ak ,1 z  Ak , 2 z
with Y1 ( z )  b0 X ( z ); YK 1 ( z )  Y ( z )

Is called the k-th biquad section. The input to the k-th biquad section is the
output from the (k-1)-th section, while the output from the k-th biquad is the
input to the (k+1)-th biquad. Each biquad section can be implemented in direct
form II.
Yk(n)=XK+1(n) Yk+1(n)

1/z
-Ak,1 Bk,1

-Ak,2 1/z
Bk,2
The entire filter is then implemented
as a cascade of biquads
x(n) b0 y(n)
1/z 1/z
-A1,1 B1,1 -A2,1 B2,1

-A1,2 1/z -A2,2 1/z


B1,2 B2,2

Cascade form structure for N=4


Matlab Implementation
 Given the coefficients {bn} and {an} of the direct form filter
 The function [b0,B,A] = dir2cas(b,a)
 can be used to obtain the coefficients b0, {Bk,i}, and {Ak,i}.
 The cascade form is implemented using a casfiltr function
 Function y = casfiltr(b0,B,A,x)
 Function cas2dir converts a cascade form to a direct form.
 Function [b,a] = cas2dir(b0,B,A)

 Examples: 6.1
Parallel Form
 In this form the system function H(z) is written as a sum
of second-order section using partial fraction
expansion.B( z ) b0  b1 z 1    bM z  M
H ( z)  
A( z ) 1  a1 z 1    a N z  N
bˆ0  bˆ1 z 1    bˆM z  N M  N  k
 1 N
  Ck z
1  a1 z    a N z k 0  
only if M  N
K=N/2, and
K Bk , 0  Bk ,1 z 1 M N
 1 2
  k C z k
B,A are real
k 1 1  Ak ,1 z  Ak , 2 z k 0   numbers
only if M  N
The second-order section
Yk 1 ( z ) Bk , 0  Bk ,1 z 1
H k ( z)   1 2
, k  1,2, , K
Yk ( z ) 1  Ak ,1 z  Ak , 2 z
with Yk ( z )  H k ( z ) X ( z ), Y ( z )   Yk ( z ), M  N

Is the k-th proper rational biquad section.


The filter input is available to all biquad section as well as
to the polynomial section if M>=N (which is an FIR part)
The output from these sections is summed to form the
filter output.
Each biquad section can be implemented in direct form II.
Parallel form structure
C0
B1,0
-A1,1 1/z B1,1
x(n) -A1,2 y(n)
1/z
B2,0
-A2,1 1/z B2,1
-A2,2 1/z

Parallel form structure for N=4 (M=N=4)


Matlab Implementation
 The function dir2par converts the direct form coefficients {bn}
and {an} into parallel form coefficients {Bk,i} and {Ak,i}
 Functions:
 [C,B,A] = dir2par(b,a)
 I = cplxcomp(p1,p2)
 y = parfiltr(C,B,A,x)
 [b,a] = par2dir(C,B,A)

 Examples
FIR Filter Structure
A finite-duration impulse response filter has a system function of
the form: M 1
1 1 M
H ( z )  b0  b1 z    bM 1 z   bn z
n

n 0
Hence the impulse response h(n) is
bn 0  n  M  1
h( n)  
0 else
And the difference equation representation is
y (n)  b0 x(n)  b1 x(n  1)    bM 1 x(n  M  1)
Which is a linear convolution of finite support.
The order of the filter is M-1, while the length of the filter is M.
FIR Filter Structure
 Direct form:
 The difference equation is implemented as a
tapped delay line since there are no feedback paths.
 Figure 6.10
 Note that since the denominator is equal to unity,
there is only one direct form structure.
 Matlab implementation
 Function: y = filter(b,1,x)
FIR Filter Structure
 Cascade form:
H ( z )  b0  b1 z 1    bM 1 z1 M
 b1 1 bM 1 1 M 
 b0 1  z    z 
 b0 b0 
K
 b0  (1  Bk ,1 z 1  Bk , 2 z  2 ); K   M / 2
k 1

 Figure 6.11
 Matlab Implementation
 Function: dir2cas, cas2dir
FIR Filter Structure
 Linear-phase form
 For frequency-selective filters (e.g., lowpass filters) it is
generally desirable to have a phase response that is a linear
function of frequency. That is
H (e jw )    w,    w   ,   0 or  2
 For a causal FIR filter with impulse over [0,M-1] interval,
the linear-phase conditions
h(n)  h( M  1  n);   0, 0  n  M  1
h(n)  h( M  1  n);    / 2, 0  n  M  1
Symmetric impulse response vs. antisymmetric impulse response
Linear-phase form
 Consider the difference equation with a symmetric
impulse response.
y (n)  b0 x(n)  b1 x(n  1)    b1 x(n  M  2)  b0 x(n  M  1)
 b0 [ x(n)  x(n  M  1)]  b1[ x(n  1)  x(n  M  2)]  

 Figure 6.12: M=7(odd) and M=6(even)


 Matlab implementation
 The linear-phase structure is essentially a direct form draw differently
to save on multiplications. Hence in a Matlab implementation the
linear-phase structure is equivalent to the direct form.
Frequency Sampling Form
 In this form we use the fact that the system function H(z) of an
FIR filter can be reconstructed from it samples on the unit
circle
1 z 
 M M 1
H (k )
H ( z)   
 M  1  W  k z 1
  k 0 M
k
WM are the roots (k  0, , M  1)
H (k ) are the residues(k  0, , M  1)

It is also interesting to note that the FIR filter described by the


above equation has a recursive form similar to an IIR filter
because it contains both poles and zeros.
Frequency Sampling Form
 The system function leads to a parallel structure as
shown in Figure 6.15 for M=4.
 One problem with the structure in Fig.6.15 is that it
requires a complex arithmetic implementation.
 Using the symmetry properties of the DFT and the
(WM–k) factor.
1  z M L H (0) H ( M / 2) 
H ( z)   2 | H ( k ) | H k ( z )  1
 1 
M  k 1 1  z 1  z 
L  M21 for M odd ; L  M2  1 for M even
 let p1=WM-k=exp(-j*2*pi*k/M)
=cos(2*pi*k/M)+jsin(2*pi*k/M)
Hk=magHk*exp(j*phaHk)
=magHk*(cos(phaHk)+jsin(phaHk))
*
Then: Hk Hk
H k ( z)  1

1  p1 z * 1
1  p1 z
cos(H k )  z cos(H k  2k / M )
1
 2 | Hk | *
1  2 z 1 cos(2k / M )  z  2
Figure 6.16
MATLAB functions and Examples
 Notify the structure type
 [C,B,A]=dir2fs(h) of textbook
 A practical problem: unstable, avoid this
problem by sampling H(z) on a circle |z|=r.
 Ex6.6 find frequency sample form
 Ex6.7 In this example the frequency sample
form has less computational complexity than
direct form.
Lattice Filter Structure
 The lattice filter is extensively used in digital speech
processing and in implementation of adaptive filter.
 It is a preferred form of realization over other FIR or
IIR filter structures because in speech analysis and in
speech synthesis the small number of coefficients
allows a large number of formants to be modeled in
real-time.
 All-zeros lattice is the FIR filter representation of the lattice
filter.
 The lattice ladder is the IIR filter representation.
All-zero Lattice Filters
 An FIR filter of length M (or order M-1) has a lattice
structure with M-1 stages.
f0(n) f1(n) f2(n) fM-1(n) fM(n)
y(n)

K0 K1 K2 KM
x(n)
K1 K2 KM
1/z 1/z 1/z
g0(n) g1(n) g2(n) gM-1(n) gM(n)

f m (n)  f m 1 (n)  K m g m 1 (n), m  1,2, , M  1


g m (n)  K m f m 1 (n)  g m 1 (n), m  1,2,  , M  1
Km: reflection coefficients
All-zero lattice filters
If the FIR filter is given by the direct form
M 1  M 1 bm  m 
H ( z)   bm z m
 b0 1   z 
m 0  m 1 b0 
And if we denote the polynomial
 M 1  b
AM 1 ( z )  1    M 1 (m) z  m ;  M 1 (m)  m , m  1, , M  1
 m 1  b0

Then the lattice filter coefficients {Km} can be obtained by


the following recursive algorithm
K 0  b0
K M 1   M 1 ( M  1)
J m ( z )  z  m Am ( z  1); m  M  1, ,1
Am ( z )  K m J m ( z )
Am 1 ( z )  2
; m  M  1,  ,1
1 Km
K m   m (m); m  M  2,  ,1

Note that the above algorithm will fail if |Km|=1 for any m. Clearly, this
condition is satisfied by the linear-phase FIR filter.
Therefore, linear-phase FIR filter cannot be implemented using lattice
structure.
Matlab Implementation
 Functions:
 [K] = dir2latc(b)
 [y] = latcfilt(K,x)
 [b] = latc2dir(K)

 Example 6.8
All-pole Lattice Filter
 A lattice structure for an IIR filter is restricted to an all-pole
system unction.
 It can be developed from an FIR lattice structure.
1 1
H ( z)  N

1  a (m) z  m AN ( z )
 N
m 1

 This IIR filter of order N has a lattice structure with N stages as


shown in Fig.6.20.
 Each stage of the filter has an input and output that are related
by the order-recursive equations.
All-pole Lattice Filter
x(n)=fN(n) fN-1(n) f2(n) f1(n) f0(n)

-KN -K2 -K1

KN K2 K1
1/z 1/z 1/z
y(n)
gN(n) g0(n)
gN-1(n) g2(n) g1(n)

f N ( n)  x ( n)
f m 1 (n)  f m (n)  K m g m 1 (n  1), m  N , N  1,
g m (n)  K m f m 1 (n)  g m 1 (n  1), m  N , N  1,  ,1
y ( n)  f 0 ( n)  g 0 ( n)
Matlab Implementation
 Function [K] = dir2latc(a)
 Care must be taken to ignore the K0 coefficient
in the K array.
 Function [a] = latc2dir(K)
 K0=1
Lattice ladder Filters
 A general IIR filter containing both poles and zeros can be
realized as a lattice-type structure by using an all-pole lattice
as the basic building block.
 Consider an IIR filter with system function
M
 M
b ( k ) z k
BM ( z )
H ( z)  k 0
N

1   a N (k ) z  k AN ( z )
k 0

 Where, without loss of generality, we assume that N>=M


Lattice ladder Filters
 A lattice type structure can be constructed by first realizing an
all-poles lattice with coefficient {Km} for the denominator
and then adding a ladder part by taking the output as a
weighted linear combination of {gm(n)} as shown in Fig.6.22
for M=N.
Lattice ladder Filters
The output of the lattice-ladder structure is given by
M
y ( n)   C m g m ( n)
m 0
{Cm} are called the ladder coefficients that determine the
zeros of the system function H(z).
M
BM (n)   Cm J m ( z )
m 0

Bm ( z )  Bm 1 ( z )  Cm J m ( z ); m  0,2, , M
M
Cm  bm   Ci i (i  m); m  M , M  1,,0
i  m 1
Matlab Implementation
 Function [K,C] = dir2ladr(b,a)
 To use this function, N>=M. If M>N, then the numerator
AN(z) should be divided into the denominator BM(z) using
the deconv function to obtain a proper rational part and a
polynomial part. The proper rational part can be
implemented using the lattice-ladder structure, while the
polynomial part is implemented using the direct structure.
 Function [b,a] ladr2dir(K,C)
 Function [y] = ladrfilt(K,C,x)
Readings and exercises
 Textbook : pp182~217
 Chinese ref. Book: pp.128~137, 231~234

 Exercises :
 1. 6.2, 6.3 both except (e)
 2. 6.2e, 6.3e, 6.8, 选 6.10

You might also like