|
STK++ 0.9.13
|
Computation online of the statistics of a Real set of variable. More...
#include <STK_Stat_Online.h>
Public Member Functions | |
| Online () | |
| default constructor | |
| Online (Online const &stat) | |
| copy constructor | |
| Real const & | mean () const |
| Real | variance () const |
| void | release () |
| release the computed parameters | |
| void | update (Real const &value) |
| update the parameters using the current estimated parameters | |
| Online & | operator= (Online const &other) |
| overwrite the statistics with other. | |
Public Attributes | |
| Real | mean_ |
| on line mean of the variable | |
| Real | variance_ |
| on line variance times n of the variable | |
| int | iter_ |
| number of stored values | |
Computation online of the statistics of a Real set of variable.
Definition at line 121 of file STK_Stat_Online.h.
|
inline |
default constructor
Definition at line 124 of file STK_Stat_Online.h.
copy constructor
Definition at line 126 of file STK_Stat_Online.h.
|
inline |
overwrite the statistics with other.
| other | the online statistics to copy |
Definition at line 149 of file STK_Stat_Online.h.
|
inline |
release the computed parameters
Definition at line 134 of file STK_Stat_Online.h.
update the parameters using the current estimated parameters
| value | the current value of the variable |
Definition at line 139 of file STK_Stat_Online.h.
|
inline |
| int STK::Stat::Online< Real, Real >::iter_ |
number of stored values
Definition at line 161 of file STK_Stat_Online.h.
| Real STK::Stat::Online< Real, Real >::mean_ |
on line mean of the variable
Definition at line 157 of file STK_Stat_Online.h.
| Real STK::Stat::Online< Real, Real >::variance_ |
on line variance times n of the variable
Definition at line 159 of file STK_Stat_Online.h.