1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

hist: show average rate

This commit is contained in:
Steffen Vogel 2018-04-26 09:30:54 +02:00
parent cae12694ea
commit b6d971cfc9

View file

@ -143,6 +143,7 @@ void hist_print(struct hist *h, int details)
stats("Highest: %g", h->highest);
stats("Lowest: %g", h->lowest);
stats("Mu: %g", hist_mean(h));
stats("1/Mu: %g", 1.0/hist_mean(h));
stats("Variance: %g", hist_var(h));
stats("Stddev: %g", hist_stddev(h));