Open In App

Python | Numpy matrix.getT()

With the help of Numpy matrix.getT() method, we can get the transpose of the same size as of our given matrix.

Syntax : matrix.getT()



Return : Return transpose of given matrix

Example #1 :
In this example we can see that we are able to get the transpose with the help of method 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)

Output:

[[6 2]
 [1 3]]

Example #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)

Output:
[[1 4 7]
 [2 5 8]
 [3 6 9]]
Article Tags :