阅读量:1
可以使用numpy的函数np.flip()
来对数组进行倒序排列。函数的语法如下:
np.flip(array, axis=None)
其中,参数array
是要进行倒序排列的数组,参数axis
表示沿着哪个轴进行倒序排列,默认为None,表示对整个数组进行倒序排列。
以下是使用np.flip()
函数进行倒序排列的示例:
import numpy as np # 创建一个一维数组 arr = np.array([1, 2, 3, 4, 5]) # 对数组进行倒序排列 arr_reverse = np.flip(arr) print(arr_reverse) # 输出:[5 4 3 2 1]
import numpy as np # 创建一个二维数组 arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) # 对数组进行倒序排列 arr_reverse = np.flip(arr, axis=0) print(arr_reverse) # 输出: # [[7 8 9] # [4 5 6] # [1 2 3]]
通过使用np.flip()
函数,可以方便地对numpy数组进行倒序排列。