ECE 486 Lab Assignments
|
Running Mean Filter Implementation. More...
Go to the source code of this file.
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_in, float *y_out) |
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... | |