Con la ayuda del Numpy matrix.view()
método, podemos encontrar la nueva vista de la array usando el matrix.view()
método.
Sintaxis:
matrix.view()
Retorno: Devuelve una nueva vista para la misma array
Ejemplo #1:
En este ejemplo, podemos ver que al usar el matrix.view()
método podemos encontrar la nueva vista de la array dada.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[4, 1; 12, 3]') # applying matrix.view() method geek = gfg.view() print(geek)
Producción:
[[ 4 1] [12 3]]
Ejemplo #2:
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[4, 1, 9; 12, 3, 1; 4, 5, 6]') # applying matrix.view() method geek = gfg.view() print(geek)
Producción:
[[ 4 1 9] [12 3 1] [ 4 5 6]]
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