Hi,
so with the ArgMax function I can find the maximum value out of a Parameter of numbers like this:
ArgMax(i, SomeParamter(i))
However I would like to find the maximum value in a 2-dimensional Paramter. So ideally I would like to do something like this:
ArgMax((i,j), Some2DimensionalParamter(i,j))
This is not possible though, because apperently only one index is permitted for the iterative operator argmax.
Does anyone have an idea how this could be done?
Thank you!