|
GNU Radio 3.6.4.2 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 | |
Protected Member Functions | |
| gr_complex | error (const gr_complex &out) |
| void | update_tap (gr_complex &tap, const gr_complex &in) |
| gr::filter::adaptive_fir_ccc_impl::adaptive_fir_ccc_impl | ( | const char * | name, |
| int | decimation, | ||
| const std::vector< gr_complex > & | taps | ||
| ) |
| gr_complex gr::filter::adaptive_fir_ccc_impl::error | ( | const gr_complex & | out | ) | [protected] |
| void gr::filter::adaptive_fir_ccc_impl::set_taps | ( | const std::vector< gr_complex > & | taps | ) | [virtual] |
Implements gr::filter::adaptive_fir_ccc.
| std::vector<gr_complex> gr::filter::adaptive_fir_ccc_impl::taps | ( | ) | const [virtual] |
Implements gr::filter::adaptive_fir_ccc.
| void gr::filter::adaptive_fir_ccc_impl::update_tap | ( | gr_complex & | tap, |
| const gr_complex & | in | ||
| ) | [protected] |
| int gr::filter::adaptive_fir_ccc_impl::work | ( | int | noutput_items, |
| gr_vector_const_void_star & | input_items, | ||
| gr_vector_void_star & | output_items | ||
| ) | [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
Reimplemented from gr_sync_block.