Open In App
Related Articles

Python | Numpy matrix.transpose()

Improve Article
Improve
Save Article
Save
Like Article
Like

With the help of Numpy matrix.transpose() method, we can find the transpose of the matrix by using the matrix.transpose() method.

Syntax : matrix.transpose()
Return : Return transposed matrix

Example #1 :
In this example we can see that by using matrix.transpose() method we are able to find the transpose of the given matrix.




# import the important module in python
import numpy as np
              
# make matrix with numpy
gfg = np.matrix('[4, 1; 12, 3]')
              
# applying matrix.transpose() method
geek = gfg.transpose()
    
print(geek)


Output:

[[ 4 12]
 [ 1  3]]

Example #2 :




# import the important module in python
import numpy as np
              
# make matrix with numpy
gfg = np.matrix('[4, 1, 9; 12, 3, 1; 4, 5, 6]')
              
# applying matrix.transpose() method
geek = gfg.transpose()
    
print(geek)


Output:

[[ 4 12  4]
 [ 1  3  5]
 [ 9  1  6]]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 29 May, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials