Thursday, January 22, 2026
HomeLanguagesPython | Numpy matrix.partition()

Python | Numpy matrix.partition()

With the help of Numpy matrix.partition() method, we are able to partition the matrix in such a way that index value that we pass sort the matrix like all the values smaller than that value is move left to it and others are right with the help of matrix.partition() method.

Syntax : matrix.partition(index)

Return : Return partitioned matrix

Example #1 :
In this example we can see that we are able to partition the given matrix with the help of method 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)


Output:

[[ 1  3 12 64]]

Example #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)


Output:

[[ 3  8 11 16 19 25 29 44 71]]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS