#include <gr_fir_ccc_generic.h>


Public Member Functions | |
| gr_fir_ccc_generic () | |
| gr_fir_ccc_generic (const std::vector< gr_complex > &taps) | |
| virtual gr_complex | filter (const gr_complex input[]) |
| compute a single output value. | |
| virtual void | filterN (gr_complex output[], const gr_complex input[], unsigned long n) |
| compute an array of N output values. | |
| virtual void | filterNdec (gr_complex output[], const gr_complex input[], unsigned long n, unsigned decimate) |
| compute an array of N output values, decimating the input | |
The trailing suffix has the form _IOT where I codes the input type, O codes the output type, and T codes the tap type. I,O,T are elements of the set 's' (short), 'f' (float), 'c' (gr_complex), 'i' (int)
| gr_fir_ccc_generic::gr_fir_ccc_generic | ( | ) | [inline] |
| gr_fir_ccc_generic::gr_fir_ccc_generic | ( | const std::vector< gr_complex > & | taps | ) | [inline] |
| virtual gr_complex gr_fir_ccc_generic::filter | ( | const gr_complex | input[] | ) | [virtual] |
compute a single output value.
input must have ntaps() valid entries. input[0] .. input[ntaps() - 1] are referenced to compute the output value.
Implements gr_fir_ccc.
Reimplemented in gr_fir_ccc_simd.
| virtual void gr_fir_ccc_generic::filterN | ( | gr_complex | output[], | |
| const gr_complex | input[], | |||
| unsigned long | n | |||
| ) | [virtual] |
| virtual void gr_fir_ccc_generic::filterNdec | ( | gr_complex | output[], | |
| const gr_complex | input[], | |||
| unsigned long | n, | |||
| unsigned | decimate | |||
| ) | [virtual] |
1.5.8