Created
May 7, 2019 22:06
-
-
Save J3698/41714b49a8594450c7fba9ac6a4834f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef MV_AVG_H | |
#define MV_AVG_H | |
typedef struct { | |
double average; | |
size_t oldest_index; | |
double *samples; | |
size_t num_samples; | |
} movingAverage_t; | |
movingAverage_t* movingAverage_new(size_t); | |
void movingAverage_free(movingAverage_t*); | |
void movingAverage_update(movingAverage_t*, double); | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment