MEDIAN stat operation added

This commit is contained in:
Daniel Girardeau-Montaut
2019-03-22 15:02:28 +01:00
parent 5e07b275b3
commit 1fc07c2b66
3 changed files with 26 additions and 2 deletions
+5
View File
@@ -269,6 +269,11 @@ static bool CreateFeaturesFromCommand(const QString& command, int lineNumber, co
feature->stat = Feature::MODE;
statDefined = true;
}
else if (token == "MEDIAN")
{
feature->stat = Feature::MEDIAN;
statDefined = true;
}
else if (token == "STD")
{
feature->stat = Feature::STD;