fixed some issues with stats::variance

fixed umbrella header for stats
added error-feedback to wifi optimizers
improved logging for wifi optimizers
adjusted calling-API for wifi-optimizers
This commit is contained in:
2018-05-20 18:56:49 +02:00
parent a8123d532d
commit a22290415e
7 changed files with 260 additions and 146 deletions

View File

@@ -5,5 +5,6 @@
#include "stats/Median.h"
#include "stats/Minimum.h"
#include "stats/Maximum.h"
#include "stats/Variance.h"
#endif // MATH_STATS_H

View File

@@ -37,7 +37,7 @@ namespace Stats {
/** get the current stadard-deviation */
Scalar getStdDev() const {
return std::sqrt(get);
return std::sqrt(get());
}