Brief description of class still missing. More...
#include <Statistics.h>
Public Member Functions | |
| void | add (double val) |
| int | count () const |
| double | maximum () const |
| double | mean () const |
| double | minimum () const |
| void | reset () |
| void | set (double val) |
| Statistics () | |
| double | stddev () const |
Protected Attributes | |
| int | _count |
| double | _maximum |
| double | _minimum |
| double | _sum |
| double | _sum2 |
Brief description of class still missing.
Full description of class still missing
| void GpCoreTools::Statistics::add | ( | double | val | ) |
| int GpCoreTools::Statistics::count | ( | ) | const [inline] |
{return _count;}
| double GpCoreTools::Statistics::maximum | ( | ) | const [inline] |
{return _maximum;}
| double GpCoreTools::Statistics::mean | ( | ) | const |
| double GpCoreTools::Statistics::minimum | ( | ) | const [inline] |
{return _minimum;}
| void GpCoreTools::Statistics::reset | ( | ) |
| void GpCoreTools::Statistics::set | ( | double | val | ) |
| double GpCoreTools::Statistics::stddev | ( | ) | const |
int GpCoreTools::Statistics::_count [protected] |
Referenced by add(), GpCoreTools::MovingStatistics::add(), GpCoreTools::MovingStatistics::addMinMax(), mean(), reset(), set(), and stddev().
double GpCoreTools::Statistics::_maximum [protected] |
Referenced by add(), GpCoreTools::MovingStatistics::addMinMax(), reset(), and set().
double GpCoreTools::Statistics::_minimum [protected] |
Referenced by add(), GpCoreTools::MovingStatistics::addMinMax(), reset(), and set().
double GpCoreTools::Statistics::_sum [protected] |
Referenced by add(), GpCoreTools::MovingStatistics::add(), GpCoreTools::MovingStatistics::addMinMax(), mean(), reset(), set(), and stddev().
double GpCoreTools::Statistics::_sum2 [protected] |
Referenced by add(), GpCoreTools::MovingStatistics::add(), GpCoreTools::MovingStatistics::addMinMax(), reset(), set(), and stddev().