|
ECE 486 Lab Assignments
|
FIR filter using fixed-length input sample blocks. More...
Go to the source code of this file.
Data Structures | |
| struct | running_mean |
| filter structure containing the filter state More... | |
Typedefs | |
| typedef struct running_mean | RUNNING_MEAN_T |
| filter structure containing the filter state More... | |
Functions | |
| RUNNING_MEAN_T * | init_running_mean (int M, int blocksize) |
| running mean filter initialization More... | |
| void | calc_running_mean (RUNNING_MEAN_T *s, float *x, float *y) |
| Calculate a block of output samples of a running meain filter from an input sample block. More... | |
| void | destroy_running_mean (RUNNING_MEAN_T *s) |
| Release memory associated with an #FIR_T. More... | |
FIR filter using fixed-length input sample blocks.
Definition in file ece486_running_mean.h.