Wednesday, July 3, 2024
HomeLanguagesPythonPython | Numpy matrix.transpose()

Python | Numpy matrix.transpose()

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]]
Dominic Rubhabha Wardslaus
Dominic Rubhabha Wardslaushttps://neveropen.dev
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments