Python Numpy matrix.getA1()
在Numpy matrix.getA1()方法的帮助下,我们可以得到我们给定矩阵的一维ndarray。
语法: matrix.getA1()
返回 : 返回大小为1-D的ndarray作为给定的矩阵。
例子#1 :
在这个例子中,我们可以看到,我们能够在matrix.getA1()方法的帮助下获得numpy数组。
# 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)
输出:
[6 2 3]
例子#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)
输出:
[1 2 3 4 5 6 7 8 9]