Con la ayuda del Numpy matrix.getA1()
método, podemos obtener el ndarray de una dimensión a partir de nuestra array dada.
Sintaxis:
matrix.getA1()
Retorno: Devuelve ndarray de tamaño 1-D como array dada
Ejemplo #1:
En este ejemplo podemos ver que podemos obtener la array numpy con la ayuda del método matrix.getA1()
.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[6; 2; 3]') # applying matrix.getA1() method geeks = gfg.getA1() print(geeks)
Producción:
[6 2 3]
Ejemplo #2:
# import the important module in python import numpy as np # make a matrix with numpy gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, 9]') # applying matrix.getA1() method geeks = gfg.getA1() print(geeks)
Producción:
[1 2 3 4 5 6 7 8 9]
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