#include <GrWeaverModTail.h>
Inheritance diagram for GrWeaverModTail< iType, oType >:
Public Member Functions | |
GrWeaverModTail (float freq, float gain) | |
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#]. | |
void | set_freq (float frequency) |
frequency is in Hz | |
void | set_gain (float g) |
Protected Attributes | |
gr_nco< float, float > | nco |
float | gain |
float | freq |
Complex mix with cos/sin of IF_freq & sum components. See also GrSSBMod, which is basically the same as this except it expects I & Q to to be a single VrComplex stream
This is typically used like this:
|---> matched filter --->| ---> GrWeaverModHead | | GrWeaverTail ---> |---> matched filter --->|
|
|
|
default name for a module (override with actual name)
Reimplemented from VrSigProc.
|
|
frequency is in Hz
|
|
|
|
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.
|
|
|
|
|
|
|