Jump to content

Infinite impulse response: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Zongur (talk | contribs)
No edit summary
Zongur (talk | contribs)
mNo edit summary
Line 5: Line 5:
IIR filters may be implemented as either [[analog filter|analog]] or [[digital filter]]s. 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.
IIR filters may be implemented as either [[analog filter|analog]] or [[digital filter]]s. 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 dependant on that of their analog counterparts which is because there are plenty of recources, works and straightforward design methods concerning analog feedback filter design while there are hardly for digital IIR filters. As a result, mostly, if a digital IIR filter is going to be implemented, first, an analog filter (e.g. [[Chebyshev filter]], [[Butterworth filter]], [[Elliptic filter]]) is designed and then it is converted to digital by applying [[discretization]] techniques such as [[Bilinear transform]] or [[Impulse invariance]].
Design of digital IIR filters is heavily dependant on that of their analog counterparts which is because there are plenty of recources, works and straightforward design methods concerning analog feedback filter design while there are hardly for digital IIR filters. As a result, mostly, if a digital IIR filter is going to be implemented, first, an analog filter (e.g. [[Chebyshev filter]], [[Butterworth filter]], [[Elliptic filter]]) is designed and then it is converted to digital by applying [[discretization]] techniques such as [[Bilinear transform]] or [[Impulse invariance]].


In practice, electrical engineers find IIR filters to be ''fast'' and ''cheap'', but with ''poorer [[bandpass filter|bandpass filtering]] and [[Infinite impulse response#Stability|stability]] characteristics'' than FIR filters.
In practice, electrical engineers find IIR filters to be ''fast'' and ''cheap'', but with ''poorer [[bandpass filter|bandpass filtering]] and [[Infinite impulse response#Stability|stability]] characteristics'' than FIR filters.

Revision as of 19:24, 7 April 2006

IIR (infinite impulse response) is a property of signal processing systems. Systems with that property are known as IIR systems or if we are dealing with electronic filter systems IIR filters. They have an impulse response function which 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.

Recursive filters are signal processing filters which re-use one or more output(s) of the filter as inputs. This feedback results in an unending impulse response characterized by either exponentially growing, decaying, or sinusoidal signal output components.

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 dependant on that of their analog counterparts which is because there are plenty of recources, works and straightforward design methods concerning analog feedback filter design while there are hardly for digital IIR filters. As a result, mostly, if a digital IIR filter is going to be implemented, first, an analog filter (e.g. Chebyshev filter, Butterworth filter, Elliptic filter) is designed and then it is converted to digital by applying discretization techniques such as Bilinear transform or Impulse invariance.

In practice, electrical engineers find IIR filters to be fast and cheap, but with poorer bandpass filtering and stability characteristics than FIR filters.

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

In the following subsections we focus on discrete time IIR filters which can be implemented in Digital Signal Processors.

Discussion

We start the discussion by stating the difference equation which defines how the input signal is related to the output signal

where is the forward filter order, are the forward filter coefficients, is the feedback filter order, are the feedback filter coefficients, is the input signal and is the output signal. A more condense form of the difference equation is

To find the impulse response we set

where is the Kronecker delta impulse. The impulse response for an IIR filter follows as

The Z-transform of the impulse response yields the transfer function of the IIR filter

We note that then with the definition of the impulse response and the time shift property of the Z-transform follows

Stating all on the left hand side

Isolating on the left hand side leads to the desired format of the transfer function

Block diagram

A typical block diagram of an IIR filter looks like the following. The block is a unit delay. The coefficients and number of feedback/feedfoward paths is 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 all poles of the transfer function to have an absolute value smaller than one. In other words, all poles must be located within a unit circle in the -plane. To find the poles of the transfer function we have to extend it with where and arrive at

The poles of the IIR filter transfer function are the zeros of the denominator polynomial of the transfer function. The poles are evaluated as

Clearly, if then the poles are not located on the origin of the z-plane. This is in contrast to the FIR filter where all poles are located on the origin of z-plane.

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

Example

Let the transfer function of a filter H be

with ROC and

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

which is non-zero for .


See also