Saturday, February 28, 2026
HomeLanguagesPython | Numpy numpy.matrix.H()

Python | Numpy numpy.matrix.H()

With the help of Numpy numpy.matrix.H() method, we can make a conjugate Transpose of any complex matrix either having dimension one or more than more.

Syntax : numpy.matrix.H()

Return : Return conjugate transpose of every complex matrix

Example #1 :
In this example we can see that with the help of matrix.H() method, we are able to transform any type of complex matrix.




# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg = np.matrix([1-2j, 3-4j])
          
# applying matrix.H() method
neveropen = gfg.getH()
    
print(neveropen)


Output:

[[ 1.+2.j]
 [ 3.+4.j]]

Example #2 :




# import the important module in python
import numpy as np
          
# make a matrix with numpy
gfg = np.matrix([[1-5j, 2 + 5j, 3-3j], [4 + 6j, 5-8j, 6-2j], [7 + 6j, 8-6j, 9 + 1.j]])
          
# applying matrix.H() method
neveropen = gfg.getH()
    
print(neveropen)


Output:

[[ 1.+5.j  4.-6.j  7.-6.j]
 [ 2.-5.j  5.+8.j  8.+6.j]
 [ 3.+3.j  6.+2.j  9.-1.j]]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS