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.

can any one explain me the operation of FIR Filter for each of the samples ?

Status
Not open for further replies.

bhalke.santosh

Newbie level 3
Newbie level 3
Joined
May 23, 2013
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Visit site
Activity points
1,305
can any one explain me the operation of FIR Filter for each of the samples given as input?

what I understood is,
"In my FIR Filter I've 127 coefficients. In this filter if I give an input sample stream to FIR Filter, it will take one sample first get Multiply-add with 127 coefficients and come out as output first sample, after that second sample get as input and this also get Multiply-add with 127 coefficients gives output second sample, this way each sample of the sample stream get 127 rounds and gives the filtered output sample stream."

please correct me If I'm wrong.
 

FIR filter math:
y[n] = x[n]*b[0] + x[n-1]*b[1]+......x[n-N]*b[N]

where n is current sample, N is filter length,x is input sample b is coefficient

so example:
4 coefficient fir: -1 3 5 -2
input signal values: 3 1 5 7
output should be: -3 8 13 7 44 25 -14
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top