📜  numpy 数组排序 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:10.887000             🧑  作者: Mango

代码示例2
a = np.array([[1,4],[3,1]])
>>> np.sort(a)                # sort along the last axis
array([[1, 4],
       [1, 3]])
>>> np.sort(a, axis=None)     # sort the flattened array
array([1, 1, 3, 4])
>>> np.sort(a, axis=0)        # sort along the first axis
array([[1, 1],
       [3, 4]])