#include <VrIIRfilter.h>
Inheritance diagram for VrIIRfilter< iType, oType >:
Public Member Functions | |
virtual int | work (VrSampleRange output, void *ao[], VrSampleRange inputs[], void *ai[]) |
Generate up to output.size output points at o[output#][sample#] using data at the inputptrs[input#][sample#]. | |
virtual void | initialize () |
Initialize any local state that is dependent on sampling frequency. | |
VrIIRfilter (int, double *, double *, float) | |
~VrIIRfilter () | |
Protected Attributes | |
int | order |
int | offset |
double * | Btaps |
double * | Ataps |
iType * | input_hist |
oType * | output_hist |
float | gain |
|
|
|
|
|
Initialize any local state that is dependent on sampling frequency.
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|