📜  Python| numpy numpy.matrix.T()

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

Python| numpy numpy.matrix.T()

Numpy numpy.matrix.T()方法的帮助下,我们可以对任何具有一维或更多维的矩阵进行转置。

示例 #1:
在这个例子中,我们可以看到在matrix.T()方法的帮助下,我们能够转换任何类型的矩阵。

# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3, 4]')
          
# applying matrix.T() method
geeks = gfg.getT()
    
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.T() method
geeks = gfg.getT()
    
print(geeks)
输出:
[[1 4 7]
 [2 5 8]
 [3 6 9]]