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) |
[[ 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) |
[[ 4 12 4] [ 1 3 5] [ 9 1 6]]