LibreVNA/Software/PC_Application/averaging.h

40 lines
1.1 KiB
C
Raw Normal View History

#ifndef AVERAGING_H
#define AVERAGING_H
#include "Device/device.h"
2021-10-21 19:00:34 +08:00
2021-02-05 23:41:16 +08:00
#include <array>
#include <deque>
#include <complex>
class Averaging
{
public:
2021-12-02 05:11:50 +08:00
enum class Mode {
Mean,
Median
};
Averaging();
void reset(unsigned int points);
void setAverages(unsigned int a);
Protocol::Datapoint process(Protocol::Datapoint d);
Protocol::SpectrumAnalyzerResult process(Protocol::SpectrumAnalyzerResult d);
// Returns the number of averaged sweeps. Value is incremented whenever the last point of the sweep is added.
// Returned values are in range 0 to averages
unsigned int getLevel();
// Returns the number of the currently active sweep. Value is incremented whenever the the first point of the sweep is added
// Returned values are in range 0 (when no data has been added yet) to averages
unsigned int currentSweep();
2021-12-02 05:11:50 +08:00
Mode getMode() const;
void setMode(const Mode &value);
private:
std::vector<std::deque<std::array<std::complex<double>, 4>>> avg;
int maxPoints;
unsigned int averages;
2021-12-02 05:11:50 +08:00
Mode mode;
};
#endif // AVERAGING_H