📜  Python| numpy numpy.matrix.A()

📅  最后修改于: 2022-05-13 01:54:26.683000             🧑  作者: Mango

Python| numpy numpy.matrix.A()

借助Numpy numpy.matrix.A()方法,我们可以得到与 self 相同的矩阵。这意味着通过这种方法我们可以得到相同的矩阵。

示例 #1:
在这个例子中,我们可以看到在matrix.A()方法的帮助下,我们能够得到 self 矩阵。

# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3, 4]')
          
# applying matrix.A() method
geeks = gfg.getA()
    
print(geeks)
输出:
[[1 2 3 4]]

示例 #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.A() method
geeks = gfg.getA()
    
print(geeks)
输出:
[[1 2 3]
 [4 5 6]
 [7 8 9]]