Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053 #ifndef __CXUTILS_MATH_RUNNING_STATS__H
00054 #define __CXUTILS_MATH_RUNNING_STATS__H
00055
00056 #include "cxutils/cxbase.h"
00057 #include <vector>
00058
00059 namespace CxUtils
00060 {
00068 class CX_UTILS_DLL RunningStats
00069 {
00070 public:
00071 typedef std::vector<RunningStats> List;
00072 RunningStats();
00073 RunningStats(const RunningStats& stats);
00074 ~RunningStats();
00075 void Clear();
00076 void SetCount(const unsigned int count) { mCount = count; }
00077 void SetMean(const double mean) { mOldMean = mNewMean = mean; }
00078 void SetStandardDeviation(const double std);
00079 void Push(const double value);
00080 inline unsigned int GetNumberOfValues() const { return mCount; }
00081 double Mean() const;
00082 double Median() const;
00083 double Variance() const;
00084 double StandardDeviation() const;
00085 RunningStats& operator=(const RunningStats& stats);
00086 private:
00087 unsigned int mCount;
00088 double mOldMean;
00089 double mNewMean;
00090 double mOldStd;
00091 double mNewStd;
00092 std::vector<double> mValues;
00093 bool mDirtyFlag;
00094 };
00095 }
00096
00097
00098 #endif
00099