IIR Example
Figure 5.8 plots an IIR filter example for the filter
Nh = 300; % APPROXIMATE filter length (visually in plot) B = 1; A = [1 -0.99]; % One-pole recursive example ... % otherwise as above for the FIR exampleThe decay time for this recursive filter was arbitrarily marked at 300 samples (about three time-constants of decay).
Input
Signal
Filter Output Signal
|
Next Section:
Transient and Steady-State Signals
Previous Section:
FIR Example