1 / 3

Finite Impulse Response (FIR) Filter Design

Finite Impulse Response (FIR) Filter Design

paco
Télécharger la présentation

Finite Impulse Response (FIR) Filter Design

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Finite Impulse Response (FIR) Filter Design One of the most important applications for the Laplace and related transforms is the derivation of time-domain filters. Since we are most familiar with the Fourier series and Fourier transform we will use them to design a class time-domain filters known as finite impulse response (FIR) filters. There are many popular methods of FIR filter design. We have been using the intuitive approach by manipulating the FFT of a time domain signal by hand or with our own programs. Review the illustration of a FIR filter shown below. data in Imagine that samples of the input function f(t) are begin loaded sequentially into the left side of the filter. Once n+1 samples are loaded, each is multiplied by a weighting factor w and the n+1weighted values are summed. These sum terms are the filter output delayed by n+1 time units. . . . wn w0 w1 w2 w3 w4 taps data out S Our goal is to choose weights w that preferentially amplify a specific signal pulse shape.

  2. Building a Low-Pass FIR Filter In this example we will use our run_fft program to design and build a 15 tap low-pass time-domain filter. The FIR filter convolves the filter function (called the transfer function) with the signal function. We have learned that a convolution in the time-domain is equivalent to a product in the frequency domain and that, X(t) * h(t) = FFT-1[FFT(X(t)) x FFT(h(t))] We will use this fact to design the transfer function h(t). Since we are building a low-pass filter, we compute the (16 point) inverse FFT of a square window and rearrange the points to place the peak in the center right side left side

  3. We apply the 15 tap FIR filter transfer function H(t) by sliding it along the input signal X(t) computing the sum of the products of signal terms and transfer function terms by, Output Xfilt(t) Input X(t) By comparing the amplitude of the FFT of X(t) and Xfilt(t) we can see that the low-pass FIR filter has attenuated the higher frequency sine wave component.

More Related