I have been trying to add a range when using standardDeviation function in CPLEX, still it notifies me with error. I have not known if it is possible to do so.
What I want is for the function to work like sum. For example:
forall(x in rangeX){
sum(y in rangeY)variable[x][y];
}
Likewise, for standardDeviation function, to calculate std for each variable[x], I expect the code to be like this somehow:
forall(x in rangeX){
standardDeviation(y in rangeY)variable[x][y];
}
But the function does not work like that.
So, how can I specify a range applied for the function?
Thank you.
#DecisionOptimization#Support#SupportMigration