Share on Facebook Share on Twitter Email
Answers.com

Infinite impulse response

 
Wikipedia: Infinite impulse response

Infinite impulse response (IIR) is a property of signal processing systems. Systems with this property are known as IIR systems or, when dealing with filter systems, as IIR filters. IIR systems have an impulse response function that is non-zero over an infinite length of time. This is in contrast to finite impulse response filters (FIR), which have fixed-duration impulse responses. The simplest analog IIR filter is an RC filter made up of a single resistor (R) feeding into a node shared with a single capacitor (C). This filter has an exponential impulse response characterized by an RC time constant.

IIR filters may be implemented as either analog or digital filters. In digital IIR filters, the output feedback is immediately apparent in the equations defining the output. Note that unlike with FIR filters, in designing IIR filters it is necessary to carefully consider "time zero" case in which the outputs of the filter have not yet been clearly defined.

Design of digital IIR filters is heavily dependent on that of their analog counterparts because there are plenty of resources, works and straightforward design methods concerning analog feedback filter design while there are hardly any for digital IIR filters. As a result, usually, when a digital IIR filter is going to be implemented, an analog filter (e.g. Chebyshev filter, Butterworth filter, Elliptic filter) is first designed and then is converted to a digital filter by applying discretization techniques such as Bilinear transform or Impulse invariance.

Example IIR filters include the Chebyshev filter, Butterworth filter, and the Bessel filter.

Contents

Transfer function derivation

Digitals filters are often described and implemented in terms of the difference equation that defines how the output signal is related to the input signal:


\begin{align}
 y[n] & = \frac{1}{a_{0}}(b_{0} x[n] + b_{1} x[n-1] + \cdots + b_{P} x[n-P] \\
      & - a_{1} y[n-1] - a_{2} y[n-2] - \cdots - a_{Q} y[n-Q])
\end{align}

where:

  • \ P is the feedforward filter order
  • \ b_{i} are the feedforward filter coefficients
  • \ Q is the feedback filter order
  • \ a_{i} are the feedback filter coefficients
  • \ x[n] is the input signal
  • \ y[n] is the output signal.

A more condensed form of the difference equation is:

\ y[n] = \frac{1}{a_{0}} \left(\sum_{i=0}^P b_{i}x[n-i] - \sum_{j=1}^Q a_{j} y[n-j]\right)

which, when rearranged, becomes:

\ \sum_{j=0}^Q a_{j} y[n-j] = \sum_{i=0}^P b_{i}x[n-i]

To find the transfer function of the filter, we first take the Z-transform of each side of the above equation, where we use the time-shift property to obtain:

\ \sum_{j=0}^Q a_{j} z^{-j} Y(z) = \sum_{i=0}^P b_{i} z^{-i} X(z)

We define the transfer function to be:


\begin{align}
H(z) & = \frac{Y(z)}{X(z)} \\
     & = \frac{\sum_{i=0}^P b_{i} z^{-i}}{\sum_{j=0}^Q a_{j} z^{-j}}
\end{align}

Considering that in most IIR filter designs coefficient \ a_0 is 1, the IIR filter transfer function takes the more traditional form:


\begin{align}
H(z) & = \frac{\sum_{i=0}^P b_{i} z^{-i}}{1+\sum_{j=1}^Q a_{j} z^{-j}}
\end{align}

Description of block diagram

Simple IIR filter block diagram

A typical block diagram of an IIR filter looks like the following. The z − 1 block is a unit delay. The coefficients and number of feedback/feedforward paths are implementation-dependent.

Stability

The transfer function allows us to judge whether or not a system is bounded-input, bounded-output (BIBO) stable. To be specific, the BIBO stability criteria requires the ROC of the system include the unit circle. For example, for a causal system, all poles of the transfer function have to have an absolute value smaller than one. In other words, all poles must be located within a unit circle in the z-plane.

The poles are defined as the values of z which make the denominator of H(z) equal to 0:

\ 0 = \sum_{j=0}^Q a_{j} z^{-j}

Clearly, if a_{j}\ne 0 then the poles are not located at the origin of the z-plane. This is in contrast to the FIR filter where all poles are located at the origin, and is therefore always stable.

IIR filters are sometimes preferred over FIR filters because an IIR filter can achieve a much sharper transition region roll-off than FIR filter of the same order.

Example

Let the transfer function of a filter H be

H(z) = \frac{B(z)}{A(z)} = \frac{1}{1 - a z^{-1}} with ROC a < | z | and 0 < a < 1

which has a pole at a, is stable and causal. The time-domain impulse response is

h(n) = anu(n)

which is non-zero for n > = 0.

See also

External links


Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics
 
 

 

Copyrights:

Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Infinite impulse response" Read more