Elaboradar  0.1
 Tutto Classi Namespace File Funzioni Variabili Tipi enumerati (enum) Gruppi
template<typename T>
radarelab::Statistic< T >::clear ( )
inline

Reset the Statistic object to a null state.

Definizione alla linea 112 del file statistics.h.

113  {
114  sum_x=0;
115  sum_y=0;
116  sum_xy=0;
117  sum_x2=0;
118  N=0;
119  mean=0.;
120  M2=0.;
121  }