mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Variance estimation fixed.
This commit is contained in:
parent
87b60bf7e8
commit
29ad2c9ee1
@ -78,7 +78,7 @@ main(int argc, char **argv)
|
||||
int min=cnt, max=0, zer=0;
|
||||
double delta=0;
|
||||
double avg = (double) cnt / z;
|
||||
double exdelta = avg*(1-1/z);
|
||||
double exdelta = avg*(1-1/(double)z);
|
||||
double exzer = exp(-avg);
|
||||
for(i=0; i<z; i++) {
|
||||
if (h[i] < min) min=h[i];
|
||||
|
Loading…
Reference in New Issue
Block a user