📜  Python| numpy matrix.partition()

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

Python| numpy matrix.partition()

Numpy matrix.partition()方法的帮助下,我们能够以这样一种方式对矩阵进行分区,即我们传递的索引值对矩阵进行排序,就像所有小于该值的值都向左移动,而其他值则向右移动matrix.partition()方法的帮助。

示例 #1:
在这个例子中,我们可以看到我们能够借助方法matrix.partition()对给定的矩阵进行分区。

# import the important module in python
import numpy as np
          
# make matrix with numpy
gfg = np.matrix('[64, 1, 12, 3]')
          
# applying matrix.partition() method
gfg.partition(3)
    
print(gfg)
输出:
[[ 1  3 12 64]]

示例 #2:

# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg = np.matrix('[11, 29, 3, 44, 25, 16, 71, 8, 19]')
          
# applying matrix.partition() method
gfg.partition(3)
    
print(gfg)
输出:
[[ 3  8 11 16 19 25 29 44 71]]