最佳答案
我有一个二维 NumPy 数组,我知道如何得到轴上的最大值:
>>> a = array([[1,2,3],[4,3,1]])
>>> amax(a,axis=0)
array([4, 3, 3])
我如何才能得到最大元素的索引? 我想作为输出 array([1,1,0])
而不是。