20 using moving_average_weights_func = std::function<std::vector<T>(
size_t nEntries)>;
78 moving_average_weights_func<T> func = get_moving_average_simple_weights<T>);
101 std::deque<T> m_Entries;
102 std::vector<T> m_Weights;
Moving average is the unweighted mean of the previous K entries.
size_t get_num_entries() const
Get number of entries in average calc.
moving_average(size_t nEntries, T startValue, moving_average_weights_func< T > func=get_moving_average_simple_weights< T >)
moving_average object constructor
T update(T value)
Update moving average.
T get() const
Get current moving average.
File contains easing functions.
std::vector< T > get_moving_average_exp_weights(size_t nEntries)
Generate weights for moving_average with exponential decrease, from highest weight for the most recen...
std::vector< T > get_moving_average_simple_weights(size_t nEntries)
Generate weights for moving_average as arithmetic mean.
std::vector< T > get_moving_average_linear_weights(size_t nEntries)
Generate weights for moving_average with linearly decrease, from highest weight for the most recent d...