Why is numpy giving this result:
x = numpy.array([1.48,1.41,0.0,0.1]) print x.argsort() >[2 3 1 0]
when I\'d expect it to do this:
According to the documentation
Returns the indices that would sort an array.
2
0.0
3
0.1
1
1.41
0
1.48