#include <GrFIRfilterFSF.h>
Inheritance diagram for GrFIRfilterFSF:
Public Member Functions | |
GrFIRfilterFSF (int decimation_factor, const std::vector< float > &taps) | |
GrFIRfilterFSF (int decimation_factor, gr_fir_builderF *builder) | |
virtual | ~GrFIRfilterFSF () |
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#]. | |
void | setTaps (const std::vector< float > &taps) |
Protected Attributes | |
gr_fir_builderF * | d_builder |
gr_fir_FSF * | d_fir |
std::vector< float > | d_new_taps |
int | d_updated |
|
Construct a FIR filter with the given taps |
|
Construct a FIR filter where the taps will be determined at initialization time by invoking builder->taps (sampling_freq) GrFIRfilterFSF becomes responsible for life time management of builder. |
|
|
|
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.
|
|
|
|
|
|
|
|
|