Fixed median class

This commit is contained in:
2019-10-08 15:18:14 +02:00
parent 9a7ca32f37
commit 462ba1199c

View File

@@ -36,7 +36,7 @@ namespace Stats {
}
/** get the median of all added values */
float get() const {
Scalar get() const {
// sanity check
Assert::isNot0(sorted.size(), "add elements first!");