mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-19 16:15:49 -05:00
Moving average fixes
This commit is contained in:
parent
618f302aad
commit
38337f1333
@ -116,7 +116,6 @@ set(sdrbase_SOURCES
|
||||
sdrbase/dsp/interpolator.cpp
|
||||
sdrbase/dsp/hbfiltertraits.cpp
|
||||
sdrbase/dsp/lowpass.cpp
|
||||
sdrbase/dsp/movingaverage.cpp
|
||||
sdrbase/dsp/nco.cpp
|
||||
sdrbase/dsp/ncof.cpp
|
||||
sdrbase/dsp/pidcontroller.cpp
|
||||
|
@ -1 +0,0 @@
|
||||
#include "dsp/movingaverage.h"
|
@ -3,6 +3,7 @@
|
||||
|
||||
#include <stdint.h>
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
#include "dsp/dsptypes.h"
|
||||
|
||||
template<class Type> class MovingAverage {
|
||||
@ -24,11 +25,7 @@ public:
|
||||
void resize(int historySize, Type initial)
|
||||
{
|
||||
m_history.resize(historySize);
|
||||
|
||||
for(size_t i = 0; i < m_history.size(); i++) {
|
||||
m_history[i] = initial;
|
||||
}
|
||||
|
||||
std::fill(m_history.begin(), m_history.end(), initial);
|
||||
m_sum = (Type) m_history.size() * initial;
|
||||
m_index = 0;
|
||||
}
|
||||
@ -39,19 +36,16 @@ public:
|
||||
m_sum += value - oldest;
|
||||
oldest = value;
|
||||
|
||||
m_index++;
|
||||
|
||||
if(m_index >= m_history.size()) {
|
||||
m_index = 0;
|
||||
}
|
||||
if (m_index < m_history.size()) {
|
||||
m_index++;
|
||||
} else {
|
||||
m_index = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void fill(Type value)
|
||||
{
|
||||
for(size_t i = 0; i < m_history.size(); i++) {
|
||||
m_history[i] = value;
|
||||
}
|
||||
|
||||
std::fill(m_history.begin(), m_history.end(), value);
|
||||
m_sum = (Type) m_history.size() * value;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user