Tuesday, April 30, 2019

What kind of filter is that? Is it IIR?


I am trying to answer the following question:


Is the system described by equation:


y[n]=0.5y[n1]+x[n]0.5x[n1]


an IIR filter? My answer is yes.


Thank you



Answer




This is the FIR filter, although it looks like an IIR. If you calculate the coefficients you get finite impulse response:


h=[1]


This happens due to zero-pole cancellation:


Y(z)0.5Y(z)z1=X(z)0.5X(z)z1


H(z)=Y(z)X(z)=10.5z110.5z1=1


Yes, it can be tricky. Seeing y[nk] coefficients in LCCDE (Linear Constant Coefficients Difference Equation) doesn't necessarily mean it's an IIR filter. It might be just a recursive FIR filter.


No comments:

Post a Comment

digital communications - Understanding the Matched Filter

I have a question about matched filtering. Does the matched filter maximise the SNR at the moment of decision only? As far as I understand, ...