Data Fields | |
double | sample_freq |
double | f_low |
double | f_high |
te_fir_win_filter_type | filter_type |
te_fir_win_window_type | window_type |
double * | z |
int32_t | z_state |
double * | h |
uint32_t | taps |
dt_window | h_window |
Definition at line 72 of file fir_win.c.
double ts_fwin::sample_freq |
Sample frequency in Hertz.
Definition at line 74 of file fir_win.c.
Referenced by band_pass(), and fwin_create().
double ts_fwin::f_low |
Low frequency cut-off in Hertz.
Definition at line 76 of file fir_win.c.
Referenced by band_pass(), fwin_change_freq(), and fwin_create().
double ts_fwin::f_high |
High frequency cut-off in Hertz.
Definition at line 78 of file fir_win.c.
Referenced by band_pass(), fwin_change_freq(), and fwin_create().
Filter Type (band_pass, band_stop, low_pass, high_pass.
Definition at line 80 of file fir_win.c.
Referenced by fwin_change_freq(), and fwin_create().
Window method to apply to FIR filter coefficients.
Definition at line 82 of file fir_win.c.
Referenced by fwin_apply_window(), fwin_create(), and fwin_reapply_window().
double* ts_fwin::z |
FIR Filter Delay Line.
Definition at line 84 of file fir_win.c.
Referenced by fwin_apply(), and fwin_create().
int32_t ts_fwin::z_state |
Delay line state.
Definition at line 86 of file fir_win.c.
Referenced by fwin_apply(), and fwin_create().
double* ts_fwin::h |
FIR filter coefficients.
Definition at line 88 of file fir_win.c.
Referenced by average(), band_pass(), fwin_apply(), fwin_apply_window(), fwin_create(), and fwin_reapply_window().
uint32_t ts_fwin::taps |
FIR filter order N (taps).
Definition at line 90 of file fir_win.c.
Referenced by average(), band_pass(), fwin_apply(), fwin_apply_window(), and fwin_create().
Window function object for FIR filter coefficients.
Definition at line 93 of file fir_win.c.
Referenced by fwin_apply_window(), fwin_create(), and fwin_reapply_window().