Con la ayuda del Numpy matrix.reshape()
método, podemos remodelar la forma de la array dada. Recuerde que todos los elementos deben cubrirse después de remodelar la array dada.
Sintaxis:
matrix.reshape(shape)
Retorno: nueva array reformada
Ejemplo #1:
En el ejemplo dado, podemos remodelar la array dada usando matrix.reshape()
el método.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[64, 1; 12, 3]') # applying matrix.reshape() method geeks = gfg.reshape((1, 4)) print(geeks)
Producción:
[[64 1 12 3]]
Ejemplo #2:
# import the important module in python import numpy as np # make a matrix with numpy gfg = np.matrix('[1, 2; 4, 5; 7, 8]') # applying matrix.reshape() method geeks = gfg.reshape((2, 3)) print(geeks)
Producción:
[[1 2 4] [5 7 8]]
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