我有一个 numpy 数组,如:
A = array([[-inf, 4, 5, 10, -inf, 1],
[-inf, 2, 6, 8, -inf, 1],
[-inf, 4, -inf, 10, -inf, 100]
])
I need to sort in a decreasing order:
A = array ([ 10,5,4,1,-inf,-inf],
[8,6,2,1,-inf,-inf],
[100,10,4,-inf,-inf,-inf]])
这里
-inf
是 float('-inf')
我该怎么做呢?我试过这个:
sorted(A, key=lambda listA: len(listA), reverse=True)
但我没有得到排序的数组。有人可以告诉我怎么做吗?
最佳答案
怎么样
A.sort()
A[:,::-1]
?
引用 :
http://docs.scipy.org/doc/numpy/reference/generated/numpy.ndarray.sort.html
http://docs.scipy.org/doc/numpy/reference/arrays.indexing.html
关于python - 在python中对二维numpy数组进行反向排序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27054368/