#include <fir.h>
|
| FIR (int taps, double bandwidth, double center) |
|
void | exec (const double *src, double *dst, int len) |
|
int | taps () const |
|
double | bandWidth () const |
|
double | centerFreq () const |
|
|
fftw_plan | m_rdftplan |
|
fftw_plan | m_ridftplan |
|
double * | m_pBufR |
|
fftw_complex * | m_pBufC |
|
std::vector< double > | m_firWnd |
|
int | m_fftLen |
|
int | m_tapLen |
|
const int | m_taps |
|
const double | m_bandWidth |
|
const double | m_centerFreq |
|
FIR (Finite Impulse Response) Digital Filter. Accelerated by FFT.
Definition at line 29 of file fir.h.
FIR::FIR |
( |
int |
taps, |
|
|
double |
bandwidth, |
|
|
double |
center |
|
) |
| |
makes coeff. for BPF. Window func. method.
- Parameters
-
taps | odd num. a number of taps |
bandwidth | 0 to 1.0. the unit is sampling freq. |
center | 0.0 to 1.0. the unit is sampling freq. |
Definition at line 20 of file fir.cpp.
The documentation for this class was generated from the following files: