1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef RunningStatINCLUDE
- #define RunningStatINCLUDE
- namespace OBJREC {
- class RunningStat
- {
- public:
- RunningStat() : m_n ( 0 ) {}
-
- void Clear();
-
- void Push ( double x );
-
- size_t NumDataValues() const;
-
- double Mean() const;
-
- double Variance() const;
-
- double StandardDeviation() const;
- private:
- size_t m_n;
- double m_oldM, m_newM, m_oldS, m_newS;
- };
- }
- #endif
|