Skip to content Skip to navigation

Connexions

You are here: Home » Content » Design of Linear-Phase FIR Filters by General Interpolation

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

      What are tags? tag icon

      Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

    • External bookmarks
  • E-mail the author
  • Rate this module (How does the rating system work?)

    Rating system

    Ratings

    Ratings allow you to judge the quality of modules. If other users have ranked the module then its average rating is displayed below. Ratings are calculated on a scale from one star (Poor) to five stars (Excellent).

    How to rate a module

    Hover over the star that corresponds to the rating you wish to assign. Click on the star to add your rating. Your rating should be based on the quality of the content. You must have an account and be logged in to rate content.

    (0 ratings)

Recently Viewed

This feature requires Javascript to be enabled.

Design of Linear-Phase FIR Filters by General Interpolation

Module by: Ivan Selesnick

Summary: (Blank Abstract)

Note: Your browser may not currently support MathML. See our browser support page for additional details. You can always view the correct math in the PDF version.

DESIGN OF FIR FILTERS BY GENERAL INTERPOLATION

If the desired interpolation points are not uniformly spaced between 00 and π then we can not use the DFT. We must take a different approach. Recall that for a Type I FIR filter, Aω=hM+2n=0M1hncosMnω A ω h M 2 n 0 M 1 h n M n ω For convenience, it is common to write this as Aω=n=0Mancosnω A ω n 0 M a n n ω where hM=a0 h M a 0 and n,1nN1:hn=aMn2 n 1 n N 1 h n a M n 2 . Note that there are M+1 M 1 parameters. Suppose it is desired that Aω A ω interpolates a set of specified values: k,0kM:A ω k = A k k 0 k M A ω k A k To obtain a Type I FIR filter satisfying these interpolation equations, one can set up a linear system of equations. k,0kM:n=0Mancosn ω k = A k k 0 k M n 0 M a n n ω k A k In matrix form, we have 1cos ω 0 cos2 ω 0 cosM ω 0 1cos ω 1 cos2 ω 1 cosM ω 1 1cos ω M cos2 ω M cosM ω M a0a1aM=A0A1AM 1 ω 0 2 ω 0 M ω 0 1 ω 1 2 ω 1 M ω 1 1 ω M 2 ω M M ω M a 0 a 1 a M A 0 A 1 A M Once an a n is found, the filter hn h n is formed as hn=1/2aMaM1a12a0a1aM1aM h n 12 a M a M 1 a 1 2 a 0 a 1 a M 1 a M

EXAMPLE

In the following example, we design a length 19 Type I FIR. Then M=9 M 9 and we have 10 parameters. We can therefore have 10 interpolation equations. We choose:

k, ω k =00.1π0.2π0.3π0k3:A ω k =1 k ω k 0 0.1 0.2 0.3 0 k 3 A ω k 1 (1)
k, ω k =0.5π0.6π0.7π0.8π0.8π1.0π4k9:A ω k =0 k ω k 0.5 0.6 0.7 0.8 0.8 1.0 4 k 9 A ω k 0 (2)
To solve this interpolation problem in Matlab, note that the matrix can be generated by a single multiplication of a column vector and a row vector. This is done with the command C = cos(wk*[0:M]); where wk is a column vector containing the frequency points. To solve the linear system of equations, we can use the Matlab backslash command.



	N = 19;
	M = (N-1)/2;
	wk = [0 .1 .2 .3 .5 .6 .7 .8 .9 1]'*pi;
	Ak = [1 1 1 1 0 0 0 0 0 0]';
	C = cos(wk*[0:M]);
	a = C/Ak;
	h = (1/2)*[a([M:-1:1]+1); 2*a([0]+1); a(1:M]+1)];

	[A,w] = firamp(h,1);
	plot(w/pi,A,wk/pi,Ak,'o')
	title('A(\omega)')
	xlabel('\omega/\pi')

      
Figure 1
Figure 1 (genint.png)

The general interpolation problem is much more flexible than the uniform interpolation problem that the DFT solves. For example, by leaving a gap between the pass-band and stop-band as in this example, the ripple near the band edge is reduced (but the transition between the pass- and stop-bands is not as sharp). The general interpolation problem also arises as a subproblem in the design of optimal minimax (or Chebyshev) FIR filters.

LINEAR-PHASE FIR FILTERS: PROS AND CONS

FIR digital filters have several desirable properties.

  • They can have exactly linear phase.
  • They can not be unstable.
  • There are several very effective methods for designing linear-phase FIR digital filters.
On the other hand,
  • Linear-phase filters can have long delay between input and output.
  • If the phase need not be linear, then IIR filters can be more efficient.

Comments, questions, feedback, criticisms?

Send feedback