Argmin renvoie une valeur pour le tableau 2D

In [9]: np.where(x == np.min(x))
#or
In [9]: divmod(x.argmin(), x.shape[1])
Real Raccoon