对numpy数组进行逆序排序
时间: 2023-07-20 08:26:14 浏览: 159
数组逆序程序
可以使用numpy中的sort方法,将数组进行排序,然后使用[::-1]将排序后的数组进行逆序,示例代码如下:
``` python
import numpy as np
arr = np.array([3, 1, 4, 2, 5])
arr_sorted = np.sort(arr)[::-1]
print(arr_sorted)
```
输出结果为:
```
[5 4 3 2 1]
```
其中,np.sort(arr)将数组arr进行排序,[::-1]表示对排序后的数组进行逆序。
阅读全文