Initializes a IIR filter using the current s-parameters.
Syntax |
Description |
---|---|
setiir(taps,tolerance,iterations,rolloff,estimate_taps,max_taps); |
Initializes an IIR filter (with the specified number of taps) using the current s-parameters. Filter taps are optimized using tolerance and max number of iterations ‘iterations’. Rolloff is the frequency rollof to force periodicity of the filter frequency response. If estimate_taps is true, the fitting will iterate from number of taps to max_taps to find the best fit with the given input tolerance. |
Example
#set the iir filter setiir(64, 0.1, 1024, 1, 1024);
See Also