filter coefficients

Technical Source
1 min readDec 7, 2021

--

Just a quick question — are ‘filter coefficients’ the coefficients of the impulse response, desired transfer function, or actual transfer function?

NOTE:-

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

That depends. The filter coefficients are the coefficients of the difference equation. If your filter is an FIR filter, then the filter coefficients are the values of the impulse response.

If you have an IIR filter, then the filter coefficients are not the same as the impulse response. Remember in that case the impulse response is infinite.

For example:

b = fir1(10,0.2);
stem(b)
h = impz(b);
stem(h)
isequal(b',h)

but

[b,a] = butter(10,0.2);
h = impz(b,a);

But the ratio of Z-transforms of the numerator coefficients to denominator coefficiens is equal to the Z-transform of the impulse response.

For example — consider the IIR system with the following difference equation

y(n)-0.8*y(n-1) = x(n)

So the filter coefficients are:

A = [1 -0.8]; B =1;

The impulse response is:

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet