Tuesday, October 7, 2025
HomeLanguagesPython | Numpy numpy.matrix.T()

Python | Numpy numpy.matrix.T()

With the help of Numpy numpy.matrix.T() method, we can make a Transpose of any matrix either having dimension one or more than more.

Syntax : numpy.matrix.T()

Return : Return transpose of every matrix

Example #1 :
In this example we can see that with the help of matrix.T() method, we are able to transform any type of matrix.




# 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
neveropen = gfg.getT()
    
print(neveropen)


Output:

[[1]
 [2]
 [3]
 [4]]

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.T() method
neveropen = gfg.getT()
    
print(neveropen)


Output:

[[1 4 7]
 [2 5 8]
 [3 6 9]]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6709 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS