Python Numpy matrix.getT()
在Numpy matrix.getT()方法的帮助下,我们可以得到与我们给定矩阵相同大小的转置。
语法: matrix.getT()
返回:返回给定矩阵的转置。
例子#1 :
在这个例子中,我们可以看到,在matrix.getT()方法的帮助下,我们能够得到转置的结果。
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[6, 1; 2, 3]')
# applying matrix.getT() method
geeks = gfg.getT()
print(geeks)
输出:
[[6 2]
[1 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.getT() method
geeks = gfg.getT()
print(geeks)
输出:
[[1 4 7]
[2 5 8]
[3 6 9]]