In J it is trivial to find the minimum element of an array:
<./ 5 6 4 9
4
But how to find the index of the minimum element using J?
(In case this is an XY problem, I should say that I want the index rather than the value so that I can look up the corresponding elements in other arrays.)