1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/common/include/villas/dsp/moving_average_window.hpp
Steffen Vogel 7d10544d79 Apply clang-format changes
Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
2024-02-29 18:58:07 +01:00

35 lines
706 B
C++

/* A moving average window.
*
* Author: Steffen Vogel <post@steffenvogel.de>
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <cstddef>
#include <villas/dsp/window.hpp>
namespace villas {
namespace dsp {
template <typename T> class MovingAverageWindow : public Window<T> {
protected:
T state;
public:
MovingAverageWindow(size_t len, T i = 0) : Window<T>(len, i), state(i) {}
T update(T in) {
T out = Window<T>::update(in);
state += in;
state -= out;
return state / (double)Window<T>::getLength();
}
};
} // namespace dsp
} // namespace villas