Elaboradar 0.1
|
◆ compute_variance()
template<typename T >
Compute variance of the distribution of x values.
Definizione alla linea 154 del file statistics.h. 155 {
156 if(M2<0.1e-11)M2=0.;
157 if(N>=minimum) return M2/(double)N;
158 else return sqrt(-1);
159 }
Referenziato da radarelab::Statistic< T >::compute_dev_std(). |