ECE 486 Lab Assignments
ece486_running_mean.h File Reference

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

Detailed Description

FIR filter using fixed-length input sample blocks.

Author
ECE486 Lab Group ????
Your Name
Date
????

Definition in file ece486_running_mean.h.