|
Celero
|
#include <Statistics.h>
Public Member Functions | |
| Statistics ()=default | |
| Default constructor. | |
| Statistics (const Statistics &other) | |
| Statistics | operator+ (const Statistics< T > &other) |
| Statistics & | operator+= (const Statistics &other) |
| Statistics & | operator= (const Statistics &other) |
| void | reset () |
| Resets all accumulated statistics. | |
| void | addSample (T x) |
| Adds a statistical sample. | |
| size_t | getSize () const |
| double | getMean () const |
| double | getVariance () const |
| double | getStandardDeviation () const |
| double | getSkewness () const |
| double | getKurtosis () const |
| double | getZScore () const |
| Computed as (mean - hypothesis)/standard_deviation. More... | |
| T | getMin () const |
| T | getMax () const |
Sources: http://www.johndcook.com/skewness_kurtosis.html http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance http://prod.sandia.gov/techlib/access-control.cgi/2008/086212.pdf http://en.wikipedia.org/wiki/Kurtosis
|
inline |
Computed as (mean - hypothesis)/standard_deviation.
Here, the hypothesis is our minimum value.
1.8.13