ALMaSS Vole ODDox
1.1
The vole model description following ODdox protocol
|
#include <PopulationManager.h>
Public Member Functions | |
SimpleStatistics () | |
SimpleStatistics constructor. More... | |
void | add_variable (double x) |
Add a value. More... | |
void | remove_variable (double x) |
Remove a value. More... | |
double | get_N () |
Returns the number of values. More... | |
double | get_Total () |
Returns the mean. More... | |
double | get_meanvalue () |
Returns the mean. More... | |
double | get_varianceP () |
Returns the population variance. More... | |
double | get_varianceS () |
Returns the sample variance. More... | |
double | get_SD () |
Returns the sample standard deviation. More... | |
double | get_SE () |
Returns the sample standard error. More... | |
void | ClearData () |
Clears the data. More... | |
Protected Attributes | |
double | m_K |
double | m_n |
double | m_Sum |
double | m_SumX |
double | m_SumX2 |
Definition at line 323 of file PopulationManager.h.
|
inline |
SimpleStatistics constructor.
Definition at line 337 of file PopulationManager.h.
References ClearData().
|
inline |
|
inline |
|
inline |
|
inline |
Returns the number of values.
Definition at line 358 of file PopulationManager.h.
References m_n.
Referenced by get_SE().
|
inline |
Returns the sample standard deviation.
Definition at line 387 of file PopulationManager.h.
References get_varianceS(), and m_n.
|
inline |
Returns the sample standard error.
Definition at line 395 of file PopulationManager.h.
References get_N(), get_varianceS(), and m_n.
|
inline |
|
inline |
|
inline |
Returns the sample variance.
Definition at line 379 of file PopulationManager.h.
|
inline |
|
protected |
This class is designed to provide the facility to create simple stats from data that comes in incrementally. It can provide the mean, variance of the data set at any point in time
Definition at line 330 of file PopulationManager.h.
Referenced by add_variable(), ClearData(), get_meanvalue(), and remove_variable().
|
protected |
Definition at line 331 of file PopulationManager.h.
Referenced by add_variable(), ClearData(), get_meanvalue(), get_N(), get_SD(), get_SE(), get_varianceP(), get_varianceS(), and remove_variable().
|
protected |
Definition at line 332 of file PopulationManager.h.
Referenced by add_variable(), ClearData(), get_Total(), and remove_variable().
|
protected |
Definition at line 333 of file PopulationManager.h.
Referenced by add_variable(), ClearData(), get_meanvalue(), get_varianceP(), get_varianceS(), and remove_variable().
|
protected |
Definition at line 334 of file PopulationManager.h.
Referenced by add_variable(), ClearData(), get_varianceP(), get_varianceS(), and remove_variable().