为什么numpy给出以下结果:
x = numpy.array([1.48,1.41,0.0,0.1]) print x.argsort() >[2 3 1 0]
当我期望它能做到这一点时:
[3 2 0 1]
显然,我对该功能缺乏了解。
根据文档
返回将对数组进行排序的索引。
2
0.0
3
0.1
1
1.41
0
1.48