Open In App

Python | Numpy numpy.matrix.T()

Last Updated : 08 Apr, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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. Python3 1==
# 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)
Output:
[[1]
 [2]
 [3]
 [4]]
Example #2 : Python3 1==
# 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)
Output:
[[1 4 7]
 [2 5 8]
 [3 6 9]]

Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy