#include <statistics.h>
Definition at line 25 of file statistics.h.
Public Member Functions | |
| Statistics () | |
| void | add (double value) |
| void | add (const Statistics &statistics) |
| void | clear () |
| double | getCount () const |
| double | getMean () const |
| double | getDeviation () const |
| double | getVariance () const |
| void | print (ostream &o) const |
Private Attributes | |
| double | m_count |
| double | m_sum |
| double | m_sumSq |
|
|
Definition at line 21 of file statistics.cpp. References clear(). |
|
|
Definition at line 33 of file statistics.cpp. |
|
|
|
Definition at line 40 of file statistics.cpp. References m_count, m_sum, and m_sumSq. Referenced by Statistics(). |
|
|
Definition at line 36 of file statistics.h. References m_count. |
|
|
Definition at line 46 of file statistics.h. References getVariance(). Referenced by print(). |
|
|
Definition at line 41 of file statistics.h. References m_count, and m_sum. Referenced by getVariance(), and print(). |
|
|
Definition at line 47 of file statistics.cpp. References getMean(), m_count, and m_sumSq. Referenced by getDeviation(). |
|
|
Definition at line 53 of file statistics.cpp. References getDeviation(), and getMean(). Referenced by PathFind::StatisticsCollection::print(). |
|
|
Definition at line 56 of file statistics.h. Referenced by add(), clear(), getCount(), getMean(), and getVariance(). |
|
|
Definition at line 58 of file statistics.h. |
|
|
Definition at line 60 of file statistics.h. Referenced by add(), clear(), and getVariance(). |