Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

what does the order of a Filter (FIR or IIR) signifies

Status
Not open for further replies.

praneethrajkanakam

Newbie level 6
Joined
Jan 17, 2013
Messages
14
Helped
4
Reputation
8
Reaction score
4
Trophy points
1,283
Activity points
1,377
what does the order of a Filter (FIR or IIR) signifies

How to determine the order of filter
 

A filter may have only feed-forward coefficients (FIR filters) or also feed-back coefficients (IIR Filters). Each of these coefficients is actually a gain value multiplied to a delayed input sample.

For FIR filters, the maximum number of samples by which an input sample is delayed is the order of the FIR filter. This is the order of the feed-forward part of the FIR filter. The feedback part in an FIR filter has zero order.
For IIR filters, there can be non-zero sample delays in the feed-forward as well as the feed-back signal chains. The larger of these two numbers if the order of the IIR filter.
 
I guess that you implies the delay count?

If so, you should examine the polynomial order of the FIR/IIR filter.

For example, a filter usually can be expressed as the following form:

H(z) = A0 + A1 * z-1 + A2 * z-2 + ... + An * z-n

where Y(z) = X(z)H(z).

If n is finite, such as n = N, then we can confirm it is a FIR filter, and sure the order of the FIR filter is equal to N.

Of course, the delay of sample equals N undoubtedly, because of X(z)Z-N => x[n-N] through inverse Z transform.


Meanwhile, you should be enlightened by the idea that the same equation can be expressed as an IIR filter, if n goes to infinite.

For example, H(z) = 1/(1-z-1), this can generate infinite polynomial terms if you do the division, the response of the filter cannot stop if you give an impulse to this filter.

That is why we call it IIR (Infinite Impulse Response), and (1-z-1) is the feedback term as axebomb mentioned.


Is my answer clear enough to solve your question?
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top