#include <GrIIRfilter.h>
Inheritance diagram for GrIIRfilter< iType, oType, taptype >:

Public Member Functions | |
| GrIIRfilter (int decimation_factor, const vector< taptype > intaps, const vector< taptype > outtaps) | |
| virtual const char * | name () |
| default name for a module (override with actual name) | |
| virtual void | initialize () |
| Initialize any local state that is dependent on sampling frequency. | |
| virtual int | work (VrSampleRange output, void *o[], VrSampleRange inputs[], void *i[]) |
| Generate up to output.size output points at o[output#][sample#] using data at the inputptrs[input#][sample#]. | |
Protected Attributes | |
| gr_iir< oType, iType, taptype > | _iir |
Uses a single input array to produce a single output array. Additional inputs and/or outputs are ignored.
|
||||||||||||||||||||
|
Construct an IIR filter with the given taps |
|
|||||||||
|
Initialize any local state that is dependent on sampling frequency.
Reimplemented from VrSigProc.
|
|
|||||||||
|
default name for a module (override with actual name)
Reimplemented from VrSigProc.
|
|
||||||||||||||||||||||||
|
Generate up to output.size output points at o[output#][sample#] using data at the inputptrs[input#][sample#]. Pointers start at corresponding VrSampleIndex in the range params. output.size is a multiple of outputSize. Returns the number of outputs (<= output.size) that it was able to compute with the given input ranges. If this value is < output.size, forecast() will need to be called again. Implements VrSigProc.
|
|
|||||
|
|
1.3.8