Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
A recursive system is a system in which current output depends on previous output(s) and input(s) but in non-recursive system current output does not depend on previous output(s).
Recursive is when a software function or procedure calls itself
like a system with memory element and without memory, right?
First example is a system with memory as we have x[n-1] with x[n] i-e we have stored x[n-1] and used that to compute y[n] but it is non-recursive as y[n] does not depend on y[n-1] or y[n-2] etc. Second one is recursive because y[n] depends on y[n-1].
FIR = Finite Impulse Responseand ,can FIR filter realize both recursive and non recursive system??
recursive systems have generally infinite impulse response. So, they cannot be implemented as FIR
FIR filters can have recursive implementations