📜  Python| numpy matrix.argsort()

📅  最后修改于: 2022-05-13 01:55:23.459000             🧑  作者: Mango

Python| numpy matrix.argsort()

Numpy matrix.argmax()方法的帮助下,我们能够找到给定矩阵中具有一维或多维的元素的排序,它会返回排序元素的索引值。

示例 #1:
在这个例子中,我们可以看到在matrix.argsort()方法的帮助下,我们能够在给定的矩阵中找到排序的元素,并将输出作为排序数组的索引。

# import the important module in python
import numpy as np
           
# make a matrix with numpy
gfg = np.matrix('[1, -2, 3, -4]')
           
# applying matrix.argsort() method
geeks = gfg.argsort()
     
print(geeks)
输出:
[[3 1 0 2]]

示例 #2:

# import the important module in python
import numpy as np
           
# make a matrix with numpy
gfg = np.matrix('[-1, 2, 3; 4, -5, 6; 7, -8, 9]')
           
# applying matrix.argsort() method
geeks = gfg.argsort()
     
print(geeks)
输出:
[[0 1 2]
 [1 0 2]
 [1 0 2]]