|
GNU Radio 3.7.2.1 C++ API
|
Adaptive FIR filter kernel with gr_complex input, gr_complex output and gr_complex taps. More...
#include <adaptive_fir.h>
Public Member Functions | |
| adaptive_fir_ccc (int decimation, const std::vector< gr_complex > &taps) | |
| ~adaptive_fir_ccc () | |
Public Member Functions inherited from gr::filter::kernel::fir_filter_ccc | |
| fir_filter_ccc (int decimation, const std::vector< gr_complex > &taps) | |
| ~fir_filter_ccc () | |
| void | set_taps (const std::vector< gr_complex > &taps) |
| void | update_tap (gr_complex t, unsigned int index) |
| std::vector< gr_complex > | taps () const |
| unsigned int | ntaps () const |
| gr_complex | filter (const gr_complex input[]) |
| void | filterN (gr_complex output[], const gr_complex input[], unsigned long n) |
| void | filterNdec (gr_complex output[], const gr_complex input[], unsigned long n, unsigned int decimate) |
Protected Member Functions | |
| virtual gr_complex | error (const gr_complex &out)=0 |
| virtual void | update_tap (gr_complex &tap, const gr_complex &in)=0 |
Protected Attributes | |
| gr_complex | d_error |
Protected Attributes inherited from gr::filter::kernel::fir_filter_ccc | |
| std::vector< gr_complex > | d_taps |
| unsigned int | d_ntaps |
| gr_complex ** | d_aligned_taps |
| gr_complex * | d_output |
| int | d_align |
| int | d_naligned |
Adaptive FIR filter kernel with gr_complex input, gr_complex output and gr_complex taps.
This class implements an adaptive FIR filter. Any class actually wanting to use adaptive FIRs will contain an object of this class.
| gr::filter::kernel::adaptive_fir_ccc::adaptive_fir_ccc | ( | int | decimation, |
| const std::vector< gr_complex > & | taps | ||
| ) |
| gr::filter::kernel::adaptive_fir_ccc::~adaptive_fir_ccc | ( | ) |
|
protectedpure virtual |
|
protectedpure virtual |
|
protected |