ECE 486 Lab Assignments
ece486_running_mean.c File Reference

Running Mean Filter Implementation. More...

#include <stdlib.h>
#include "ece486_running_mean.h"

Go to the source code of this file.

Functions

RUNNING_MEAN_Tinit_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...
 

Detailed Description

Running Mean Filter Implementation.

Author
ECE486 Lab Group 0
Don Hummels
Date
Jan 2022

Definition in file ece486_running_mean.c.