Next: 4 Lattice Filters
Up: 2 Filter Structures supported
Previous: 2 Linear Combiner Filters
  Contents
3 Recursive Filters
Figure 2.3:
Recursive filter structure.
 |
All filter structures mentioned so far are non-recursive structures that calculate the filter
output from a linear combination of their input but do not make use of any feedback mechanism.
Such non-recursive filters have impulse responses of limited duration and therefore known as
Finite Impulse Response (FIR) filters. A filter structure that calculates its output as a
linear combination of its current and previous input samples as well as previous samples
of its output, such that shown in Fig. 2.3, is referred to as a recursive
filter. Recursive filters usually have very long impulse response, therefore, they are
referred to as Infinite Impulse Response (IIR) filters. The output
of an IIR filter
is given by
 |
(5) |
where
are the feed-forward coefficients and
are the feedback coefficients of the IIR filter. In vector notations, eq (2.5)
can be written as
 |
(6) |
where
is the vector of feed-forward
coefficients at time index
,
is the
vector of feedback coefficients at time index
,
,
is the vector of current and past input samples,
, is the vector of past
output samples, and
is the vector transpose operator.
Besides calculating the filter output, an adaptive IIR filter must also update the
filter
coefficients to optimize some performance function in the same manner as in the case of FIR
adaptive filters. Adjusting the coefficients of an IIR filters, however, is complicated by
two factors. The first is that the filter can run unstable very easily during adaptation
if the filter poles shift outside the unit circle. The second is that the performance function
to be optimized, in general, has many local minima which might lead to adjusting the filter
coefficients to one of those minima and not to the desired global minimum. This is in contrast
to the performance functions (the mean square error function for instance) usually encountered
in adapting FIR filters which have a single global minimum. Despite those difficulties, recursive
adaptive filters have found many practical applications, especially in control systems. In such
applications, adaptive IIR filters offer great advantages when the physical system to be controlled
or modeled is of a recursive nature as is the case of adaptive control of mechanical systems, and
in active vibration control systems. In such applications, an adaptive IIR filter of a few
coefficients can result in much better performance than an FIR of a few thousand coefficients. The
adaptive signal processing toolbox provides many IIR adaptive algorithms such as the Equation Error
(see Section 6.2), the Output Error (see Section 6.3), and the Simple Hyperstable
Adaptive Recursive Filter (see Section 6.4). Furthermore, three algorithms for adapting
second order IIR sections are provided, namely, SOIIR1, SOIIR2, and CSOIIR2 (see Sections
6.5, 6.6, and 6.1, respectively).
Next: 4 Lattice Filters
Up: 2 Filter Structures supported
Previous: 2 Linear Combiner Filters
  Contents