1 2 3 2 3 3 4 5 6 -> 3 7 8
我觉得我应该能够在列上映射一个argmax / posmax函数,但是我没有看到在Octave中这样做的特别直观的方式.
[max_values indices] = max(input);
例:
input = 1 2 3 4 5 6 3 7 8 [max_values indices] = max(input) max_values = 4 7 8 indices = 2 3 3