Con la ayuda del Numpy matrix.partition()
método, podemos dividir la array de tal manera que el valor de índice que pasamos ordene la array como si todos los valores más pequeños que ese valor se movieran hacia la izquierda y otros hacia la derecha con la ayuda del matrix.partition()
método.
Sintaxis:
matrix.partition(index)
Retorno : Retorno array particionada
Ejemplo #1:
En este ejemplo podemos ver que podemos particionar la array dada con la ayuda del método 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)
Producción:
[[ 1 3 12 64]]
Ejemplo #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)
Producción:
[[ 3 8 11 16 19 25 29 44 71]]
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA