|
GNU Radio 3.6.5 C++ API
|
#include <adaptive_fir_ccc_impl.h>

Public Member Functions | |
| void | set_taps (const std::vector< gr_complex > &taps) |
| std::vector< gr_complex > | taps () const |
| adaptive_fir_ccc_impl (const char *name, int decimation, const std::vector< gr_complex > &taps) | |
| int | work (int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) |
| just like gr_block::general_work, only this arranges to call consume_each for you More... | |
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) |
| 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 | |
| gr_complex | error (const gr_complex &out) |
| void | update_tap (gr_complex &tap, const gr_complex &in) |
Additional Inherited Members | |
Public Types inherited from gr::filter::adaptive_fir_ccc | |
| typedef boost::shared_ptr < adaptive_fir_ccc > | sptr |
Static Public Member Functions inherited from gr::filter::adaptive_fir_ccc | |
| static sptr | make (const char *name, int decimation, const std::vector< gr_complex > &taps) |
| Adaptive FIR filter with gr_complex input, gr_complex output and gr_complex taps. More... | |
Protected Types inherited from gr_basic_block | |
| enum | vcolor { WHITE, GREY, BLACK } |
Protected Attributes inherited from gr_block | |
| std::vector< long > | d_max_output_buffer |
| std::vector< long > | d_min_output_buffer |
| gruel::mutex | d_setlock |
| gr_logger_ptr | d_logger |
| gr_logger_ptr | d_debug_logger |
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 |
| gr::filter::adaptive_fir_ccc_impl::adaptive_fir_ccc_impl | ( | const char * | name, |
| int | decimation, | ||
| const std::vector< gr_complex > & | taps | ||
| ) |
|
protected |
|
virtual |
Implements gr::filter::adaptive_fir_ccc.
|
virtual |
Implements gr::filter::adaptive_fir_ccc.
|
protected |
|
virtual |
just like gr_block::general_work, only this arranges to call consume_each for you
The user must override work to define the signal processing code
Implements gr_sync_block.