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 numpy as np
gfg = np.matrix( '[4, 1; 12, 3]' )
geek = gfg.transpose()
print (geek)
|
Example #2 :
import numpy as np
gfg = np.matrix( '[4, 1, 9; 12, 3, 1; 4, 5, 6]' )
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