You are on page 1of 9

EE-384: Digital Signal Processing Spring 2022

Laboratory 6: Discrete Filter Structure


Instructor: Mr Ammar Naseer EE UET New Campus

Aims
This lab session aims at the theory for the processing of digital signals. To process signals, we have to
design and implement filters. Before we discuss the design issue, we first concern ourselves with how
these filters can be implemented

Pre-Lab:
Basic Elements
Since our filters are LTI systems, we need three basic elements to describe digital filter structures.

1. Adder: This element has two inputs and one output and is shown in Figure 7.1. Note that the
addition of three or more signals is implemented by successive two-input adders.

Figure 7.1: Adder

2. Multiplier (gain): This is a single-input, single-output element and is shown in Figure 7.2. Note
that the multiplication by 1 is understood.

Figure 7.2: Multiplier (gain)

3. Delay element (shifter or memory): This element delays the signal passing through it by one
sample, as shown in Figure 7.3. It is implemented by using a shift register.

Figure 7.3: Delay element

Using these basic elements, we can now describe various structures of all kind of filters. MATLAB is a
convenient tool in the development of these structures that require operations on polynomials.

Page 1
Laboratory 7: Discrete Filter Structure 7.2

Filter Structure
The system function of an IIR filter is given by

𝐵(𝑧) ∑𝑀
𝑛=0 𝑏𝑛 𝑧
−𝑛
𝑏0 + 𝑏1 𝑧 −1 + ⋯ + 𝑏𝑀 𝑧 −𝑀
𝐻(𝑧) = = = (7.1)
𝐴(𝑧) ∑𝑁
𝑛=0 𝑎𝑛 𝑒
−𝑛 1 + 𝑎1 𝑧 −1 + ⋯ + 𝑎𝑁 𝑧 −𝑁

where 𝑏𝑛 and 𝑎𝑛 are the coefficients of the filter. We have assumed without loss of generality that 𝑎0 =
1. The order of such an IIR filter is called N if 𝑎𝑁 ≠ 0. The difference equation representation of an IIR
filter is expressed as

𝑁 𝑁

𝑦(𝑛) = ∑ 𝑏𝑚 𝑥(𝑛 − 𝑚) − ∑ 𝑎𝑚 𝑦(𝑛 − 𝑚) (7.2)


𝑚=0 𝑚=1

Similarly, the system function of an FIR filter is given by

𝑀
𝐵(𝑧)
𝐻(𝑧) = = ∑ 𝑏𝑛 𝑧 −𝑛 (7.3)
𝐴(𝑧)
𝑛=0

where 𝑏𝑛 is the coefficients of the filter. The difference equation representation of an IIR filter is
expressed as

𝑦(𝑛) = ∑ 𝑏𝑚 𝑥(𝑛 − 𝑚)
(7.4)
𝑚=0

Three different structures can be used to implement a filter:

1. Direct form: In this form the difference equations (7.2) and (7.4) are implemented directly as
given. There are two parts to this filter, namely the moving average part and the recursive part
(or equivalently, the numerator and denominator parts). Therefore this implementation leads to
two versions: direct form I and direct form II structures.
2. Cascade form: In this form the system function H(z) in equations (7.1) and (7.3) are factored into
smaller 2nd-order sections, called biquads. The system function 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.
3. Parallel form: This is similar to the cascade form, but after factorization, a partial fraction
expansion is used to represent H(z) as a sum of smaller 2nd-order sections. Each section is again
implemented in a direct form, and the entire system function is implemented as a parallel
network of sections.
Laboratory 7: Discrete Filter Structure 7.3

Direct Form
As the name suggests, the difference equation is implemented as given using delays, multipliers, and
adders. For the purpose of illustration, let M = N = 4. Then the difference equation is

𝑦(𝑛) = 𝑏0 𝑥(𝑛) + 𝑏1 𝑥(𝑛 − 1) + 𝑏2 𝑥(𝑛 − 2) + 𝑏3 𝑥(𝑛 − 3) + 𝑏4 𝑥(𝑛 − 4) − 𝑎1 𝑦(𝑛 − 1)


− 𝑎2 𝑦(𝑛 − 2) − 𝑎3 𝑦(𝑛 − 3) − 𝑎4 𝑦(𝑛 − 4)
This difference equation can be implemented by a block diagram called direct form I structure as shown
in Figure 7.4.

Figure 7.4: Direct form I structure

The direct form I structure implements each part of the rational function H(z) separately with a cascade
connection between them. The numerator part is a tapped delay line followed by the denominator part,
which is a feedback tapped delay line. Thus there are two separate delay lines in this structure, and
hence it requires eight delay elements. We can reduce this delay element count or eliminate one delay
line by interchanging the order in which the two parts are connected in the cascade. Now the two delay
lines are close to each other, connected by a unity gain branch. Therefore one delay line can be
removed, and this reduction leads to a canonical structure called direct form II structure, shown in
Figure 7.5.

Figure 7.5: Direct Form II

An equivalent structure to the direct form can be obtained using a procedure called transposition. In this
operation three steps are performed:

1. All path arrow directions are reversed.


2. All branch nodes are replaced by adder nodes, and all adder nodes are replaced by branch
nodes.
3. The input and output nodes are interchanged.
Laboratory 7: Discrete Filter Structure 7.4

The resulting structure is called the transposed direct form structure. The transposed direct form II
structure is shown in Figure 7.6.

Figure 7.6: Direct form II Transposed

Cascaded Form
In this form the system function H(z) is written as a product of 2nd-order sections 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 2nd-order polynomials.

𝐾
1 + 𝐵𝑘.1 𝑧 −1 + 𝐵𝑘.2 𝑧 −2
𝐻(𝑧) = 𝑏0 ∏
1 + 𝐴𝑘.1 𝑧 −1 + 𝐴𝑘.2 𝑧 −2 (7.5)
𝑘=1

The 2nd-order section is called the kth biquad section. The input to the kth biquad section is the output
from the (k − 1)th biquad section and so on. Each biquad section Hk(z) can be implemented in direct form
II. The entire filter is then implemented as a cascade of biquads.

As an example, consider N = 4. Figure 7.7 shows a cascade form structure for this 4th-order IIR filter.

Figure 7.7: Cascade form structure for N = 4

Matlab Implementation
Given the coefficients {bn} and {an} of the direct form filter, we have to obtain the coefficients b0, {Bk,i},
and {Ak,i}. This is done by the following function dir2cas.

function [b0,B,A] = dir2cas(b,a);


% DIRECT-form to CASCADE-form conversion (cplxpair version)
% ---------------------------------------------------------
% [b0,B,A] = dir2cas(b,a)
% b0 = gain coefficient
% B = K by 3 matrix of real coefficients containing bk’s
% A = K by 3 matrix of real coefficients containing ak’s
% b = numerator polynomial coefficients of DIRECT form
Laboratory 7: Discrete Filter Structure 7.5

% a = denominator polynomial coefficients of DIRECT form


% compute gain coefficient b0
b0 = b(1); b = b/b0; a0 = a(1); a = a/a0; b0 = b0/a0;
%
M = length(b); N = length(a);
if N > M
b = [b zeros(1,N-M)];
elseif M > N
a = [a zeros(1,M-N)]; N = M;
else
NM = 0;
end
%
K = floor(N/2); B = zeros(K,3); A = zeros(K,3);
if K*2 == N;
b = [b 0]; a = [a 0];
end
%
broots = cplxpair(roots(b)); aroots = cplxpair(roots(a));
for i=1:2:2*K
Brow = broots(i:1:i+1,:); Brow = real(poly(Brow));
B(fix((i+1)/2),:) = Brow;
Arow = aroots(i:1:i+1,:); Arow = real(poly(Arow));
A(fix((i+1)/2),:) = Arow;
end
end

This function converts the b and a vectors into K × 3 B and A matrices. It begins by computing b0, which
is equal to b0/a0 (assuming a0≠1). It then makes the vectors b and a of equal length by zero-padding the
shorter vector. This ensures that each biquad has a nonzero numerator and denominator. Next it
computes the roots of the B(z) and A(z) polynomials. Using the cplxpair function, these roots are
ordered in complex conjugate pairs. Now every pair is converted back into a 2nd-order numerator or
denominator polynomial using the poly function. The SP toolbox function, tf2sos (transfer function to
2nd-order section), also performs a similar operation.

The following MATLAB function, cas2dir, converts a cascade form to a direct form. This is a simple
operation that involves multiplication of several 2nd-order polynomials. For this purpose, the MATLAB
function conv is used in a loop over K factors. The SP toolbox function, sos2tf also performs a similar
operation.

function [b,a] = cas2dir(b0,B,A);


% CASCADE-to-DIRECT form conversion
% ---------------------------------
% [b,a] = cas2dir(b0,B,A)
% b = numerator polynomial coefficients of DIRECT form
% a = denominator polynomial coefficients of DIRECT form
% b0 = gain coefficient
% B = K by 3 matrix of real coefficients containing bk’s
Laboratory 7: Discrete Filter Structure 7.6

% A = K by 3 matrix of real coefficients containing ak’s


%
[K,L] = size(B);
b = [1]; a = [1];
for i=1:1:K
b=conv(b,B(i,:)); a=conv(a,A(i,:));
end
b = b*b0;
end

Parallel Form
In this form the system function H(z) is written as a sum of 2nd-order sections using partial fraction
expansion

𝐾 𝑀−𝑁
𝐵(𝑧) 𝐵𝑘.0 + 𝐵𝑘.1 𝑧 −1
𝐻(𝑧) = =∑ −1 −2
+ ∑ 𝐶𝑘 𝑧 −𝑘 (7.6)
𝐴(𝑧) 1 + 𝐴𝑘.1 𝑧 + 𝐴𝑘.2 𝑧
𝑘=1 0
The 2nd-order section is the kth proper rational biquad section. The filter input is available to all biquad
sections as well as to the polynomial section. The output from these sections is summed to form the
filter output. Now each biquad section Hk(z) can be implemented in direct form II. Due to the summation
of subsections, a parallel structure can be built to realize H(z).

As an example, consider M = N = 4. Figure 7.8 shows a parallel-form structure for this 4th-order IIR filter.

Figure 7.8: Parallel form structure for N = 4

Matlab Implementation
The following function dir2par converts the direct-form coefficients {bn} and {an} into parallel form
coefficients {Bk,i} and {Ak,i}.

function [C,B,A] = dir2par(b,a);


% DIRECT-form to PARALLEL-form conversion
% --------------------------------------
% [C,B,A] = dir2par(b,a)
% C = Polynomial part when length(b) >= length(a)
Laboratory 7: Discrete Filter Structure 7.7

% B = K by 2 matrix of real coefficients containing bk’s


% A = K by 3 matrix of real coefficients containing ak’s
% b = numerator polynomial coefficients of DIRECT form
% a = denominator polynomial coefficients of DIRECT form
%
M = length(b); N = length(a);
[r1,p1,C] = residuez(b,a);
p = cplxpair(p1,10000000*eps); I = cplxcomp(p1,p); r = r1(I);
K = floor(N/2); B = zeros(K,2); A = zeros(K,3);
if K*2 == N; %N even, order of A(z) odd, one factor is first order
for i=1:2:N-2
Brow = r(i:1:i+1,:); Arow = p(i:1:i+1,:);
[Brow,Arow] = residuez(Brow,Arow,[]);
B(fix((i+1)/2),:) = real(Brow); A(fix((i+1)/2),:) =
real(Arow);
end
[Brow,Arow] = residuez(r(N-1),p(N-1),[]);
B(K,:) = [real(Brow) 0]; A(K,:) = [real(Arow) 0];
else
for i=1:2:N-1
Brow = r(i:1:i+1,:); Arow = p(i:1:i+1,:);
[Brow,Arow] = residuez(Brow,Arow,[]);
B(fix((i+1)/2),:) = real(Brow); A(fix((i+1)/2),:) =
real(Arow);
end
end

We need to arrange pole-and-residue pairs into complex conjugate pole-and-residue pairs followed by
real poleand-residue pairs. To do this, the cplxpair function from MATLAB can be used; this sorts a
complex array into complex conjugate pairs. However, two consecutive calls to this function, one each
for pole and residue arrays, will not guarantee that poles and residues will correspond to each other.
Therefore a new cplxcomp function is developed, which compares two shuffled complex arrays and
returns the index of one array, which can be used to rearrange another array

function I = cplxcomp(p1,p2)
% I = cplxcomp(p1,p2)
% Compares two complex pairs which contain the same scalar elements
% but (possibly) at differrent indices. This routine should be
% used after CPLXPAIR routine for rearranging pole vector and its
% corresponding residue vector.
% p2 = cplxpair(p1)
%
I=[];
for j=1:1:length(p2)
for i=1:1:length(p1)
if (abs(p1(i)-p2(j)) < 0.0001)
I=[I,i];
end
end
end
Laboratory 7: Discrete Filter Structure 7.8

I=I';

Similarly, to obtain a direct form from a parallel form, the function par2dir can be used. It computes
poles and residues of each proper biquad and combines these into system poles and residues. Another
call of the residuez function in reverse order computes the numerator and denominator polynomials.

function [b,a] = par2dir(C,B,A);


% PARALLEL-to-DIRECT form conversion
% ----------------------------------
% [b,a] = par2dir(C,B,A)
% b = numerator polynomial coefficients of DIRECT form
% a = denominator polynomial coefficients of DIRECT form
% C = Polynomial part of PARALLEL form
% B = K by 2 matrix of real coefficients containing bk’s
% A = K by 3 matrix of real coefficients containing ak’s
%
[K,L] = size(A); R = []; P = [];
for i=1:1:K
[r,p,k]=residuez(B(i,:),A(i,:)); R = [R;r]; P = [P;p];
end
[b,a] = residuez(R,P,C); b = b(:)'; a = a(:)';

6A: Consider the filter given as.


16𝑦(𝑛) + 12𝑦(𝑛 − 1) + 2𝑦(𝑛 − 2) − 4𝑦(𝑛 − 3) − 𝑦(𝑛 − 4)
= 𝑥(𝑛) − 3𝑥(𝑛 − 1) + 11𝑥(𝑛 − 2) − 27𝑥(𝑛 − 3) + 18𝑥(𝑛 − 4)

>> b=[1 -3 11 -27 18]; a=[16 12 2 -4 -1];


>> [b0,B,A]=dir2cas(b,a)
Its structure would be realized as

Figure 7.9: Cascaded structure for Example 7A

Now determine its parallel form.


>> b=[1 -3 11 -27 18]; a=[16 12 2 -4 -1];
>> [C,B,A]=dir2par(b,a)

Its structure would be realized as


Laboratory 7: Discrete Filter Structure 7.9

Figure 7.10: Parallel structure for Example 7A

Main Lab
6B: Consider the block diagram shown in Figure 7.11. This structure contains a cascade of two parallel
sections.

Figure 7.11: Block Diagram for Example 7B

Use Matlab to reduce the structure to a single

a) direct form representation


b) cascaded form representation
c) parallel form representation

6C: Draw the structure in MATLAB using Simulink also redraw the reduce structure in Simulink.

Providing an input to the system and by showing the response on scope verify that all structure gave
same response.

You might also like