16 return std::vector<T>(nEntries, T(1.f) /
static_cast<T
>(nEntries));
22 std::vector<T> weights(nEntries, 0.f);
24 const T fDenominator =
static_cast<T
>(nEntries * (nEntries + 1)) / T(2.f);
26 for (
size_t i = 0; i < nEntries; ++i)
27 weights[i] =
static_cast<T
>(i + 1) / fDenominator;
35 std::vector<T> weights(nEntries, 0.f);
40 constexpr T fAlpha = T(0.8f);
42 for (
size_t i = 0; i < nEntries; ++i)
43 weights[i] = fAlpha * std::pow(1 - fAlpha,
static_cast<T
>(nEntries - i - 1));
51 , m_Entries(nEntries, startValue)
52 , m_Weights(func(m_Entries.size()))
59 m_Entries.pop_front();
60 m_Entries.push_back(value);
63 for (
size_t i = 0; i < m_Entries.size(); ++i)
64 m_Value += m_Entries[i] * m_Weights[i];
78 return m_Entries.size();
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.
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...