|
GNU Radio 3.4.0 C++ API
|
FIR with internal buffer for gr_complex input, gr_complex output and float taps. More...
#include <gri_fir_filter_with_buffer_ccf.h>
Public Member Functions | |
| gri_fir_filter_with_buffer_ccf (const std::vector< float > &taps) | |
| construct new FIR with given taps. | |
| ~gri_fir_filter_with_buffer_ccf () | |
| gr_complex | filter (gr_complex input) |
| compute a single output value. | |
| gr_complex | filter (const gr_complex input[], unsigned long dec) |
| compute a single output value; designed for decimating filters. | |
| void | filterN (gr_complex output[], const gr_complex input[], unsigned long n) |
| compute an array of N output values. | |
| void | filterNdec (gr_complex output[], const gr_complex input[], unsigned long n, unsigned long decimate) |
| compute an array of N output values, decimating the input | |
| void | set_taps (const std::vector< float > &taps) |
install new_taps as the current taps. | |
| unsigned | ntaps () const |
| const std::vector< float > | get_taps () const |
Protected Attributes | |
| std::vector< float > | d_taps |
| gr_complex * | d_buffer |
| unsigned int | d_idx |
FIR with internal buffer for gr_complex input, gr_complex output and float taps.
| gri_fir_filter_with_buffer_ccf::gri_fir_filter_with_buffer_ccf | ( | const std::vector< float > & | taps | ) |
construct new FIR with given taps.
Note that taps must be in forward order, e.g., coefficient 0 is stored in new_taps[0], coefficient 1 is stored in new_taps[1], etc.
| gri_fir_filter_with_buffer_ccf::~gri_fir_filter_with_buffer_ccf | ( | ) |
| gr_complex gri_fir_filter_with_buffer_ccf::filter | ( | gr_complex | input | ) |
compute a single output value.
input is a single input value of the filter type
| gr_complex gri_fir_filter_with_buffer_ccf::filter | ( | const gr_complex | input[], |
| unsigned long | dec | ||
| ) |
compute a single output value; designed for decimating filters.
input is a single input value of the filter type. The value of dec is the decimating value of the filter, so input[] must have dec valid values. The filter pushes dec number of items onto the circ. buffer before computing a single output.
| void gri_fir_filter_with_buffer_ccf::filterN | ( | gr_complex | output[], |
| const gr_complex | input[], | ||
| unsigned long | n | ||
| ) |
| void gri_fir_filter_with_buffer_ccf::filterNdec | ( | gr_complex | output[], |
| const gr_complex | input[], | ||
| unsigned long | n, | ||
| unsigned long | decimate | ||
| ) |
| const std::vector<float> gri_fir_filter_with_buffer_ccf::get_taps | ( | ) | const [inline] |
References gr_reverse(), and d_taps.
| unsigned gri_fir_filter_with_buffer_ccf::ntaps | ( | ) | const [inline] |
References d_taps.
| void gri_fir_filter_with_buffer_ccf::set_taps | ( | const std::vector< float > & | taps | ) |
install new_taps as the current taps.
gr_complex* gri_fir_filter_with_buffer_ccf::d_buffer [protected] |
unsigned int gri_fir_filter_with_buffer_ccf::d_idx [protected] |
std::vector<float> gri_fir_filter_with_buffer_ccf::d_taps [protected] |
Referenced by ntaps(), and get_taps().