qxLib
moving_average.h
Go to the documentation of this file.
1 /**
2 
3  @file moving_average.h
4  @author Khrapov
5  @date 1.06.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
12 
13 #include <deque>
14 #include <vector>
15 
16 namespace qx
17 {
18 
19 template<class T>
20 using moving_average_weights_func = std::function<std::vector<T>(size_t nEntries)>;
21 
22 /**
23  @brief Generate weights for moving_average as arithmetic mean
24  @tparam T - floating point ish type
25  @param nEntries - number of entries in moving_average
26  @retval - weights
27 **/
28 template<class T>
29 inline std::vector<T> get_moving_average_simple_weights(size_t nEntries);
30 
31 /**
32  @brief Generate weights for moving_average with linearly decrease,
33  from highest weight for the most recent data, down to zero
34  @tparam T - floating point ish type
35  @param nEntries - number of entries in moving_average
36  @retval - weights
37 **/
38 template<class T>
39 inline std::vector<T> get_moving_average_linear_weights(size_t nEntries);
40 
41 /**
42  @brief Generate weights for moving_average with exponential decrease,
43  from highest weight for the most recent data, down to zero
44  @tparam T - floating point ish type
45  @param nEntries - number of entries in moving_average
46  @retval - weights
47 **/
48 template<class T>
49 inline std::vector<T> get_moving_average_exp_weights(size_t nEntries);
50 
51 /**
52 
53  @class moving_average
54  @brief Moving average is the unweighted mean of the previous K entries
55  @details \see https://tinyurl.com/d3nfcaca to compare weights filling funcs
56  blue - random numbers [-5, 5]
57  green - get_moving_average_simple_weights
58  yellow - get_moving_average_linear_weights
59  red - get_moving_average_exp_weights with ALPHA = 0.8f
60  @tparam T - floating point ish type
61  @author Khrapov
62  @date 1.06.2021
63 
64 **/
65 template<class T>
67 {
68 public:
69  /**
70  @brief moving_average object constructor
71  @param nEntries - number of entries in average calc
72  @param startValue - start value
73  @param func - weights func
74  **/
76  size_t nEntries,
77  T startValue,
78  moving_average_weights_func<T> func = get_moving_average_simple_weights<T>);
79 
80  /**
81  @brief Update moving average
82  @param value - new value
83  @retval - new moving average
84  **/
85  T update(T value);
86 
87  /**
88  @brief Get current moving average
89  @retval - current moving average
90  **/
91  T get() const;
92 
93  /**
94  @brief Get number of entries in average calc
95  @retval - number of entries in average calc
96  **/
97  size_t get_num_entries() const;
98 
99 private:
100  T m_Value;
101  std::deque<T> m_Entries;
102  std::vector<T> m_Weights;
103 };
104 
105 } // namespace qx
106 
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...