Is it possible to convert the largest numpy array offset to a tuple?
So for example, if "array" was:
[[1 2 3 6 8],
[2 4 1 1 0],
[0 0 0 20 0]]
Then the np.max(array) would return 20 and it's position/ offset is array[2][3].
Is it possible to turn array[2][3] into tuple = (2,3)?
Thank you for the input.