#include <VrComplexFIRfilter.h>
Inheritance diagram for VrComplexFIRfilter< iType >:
Public Member Functions | |
virtual const char * | name () |
default name for a module (override with actual name) | |
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#]. | |
virtual void | initialize () |
Initialize any local state that is dependent on sampling frequency. | |
int | setCenter_Freq (int, float) |
int | setPhase_Offset (VrComplex) |
int | setCenter_Freq (float) |
int | setNumber_Taps (int, int) |
int | setNumber_Taps (int) |
VrComplexFIRfilter (int n, int d, const int t[], const float f[], const float g[]) | |
VrComplexFIRfilter (int d, int t, float f, float g) | |
~VrComplexFIRfilter () | |
Protected Member Functions | |
void | buildFilter_complex (int) |
Protected Attributes | |
int * | numTaps |
int | num_ch |
VrComplex ** | taps |
VrComplex * | phase_corr_incr |
VrComplex * | phase_offset |
long | time |
float * | center_freq |
float * | gain |
|
|
|
|
|
|
|
|
|
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. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|