Friday, October 10, 2025
HomeLanguagesPython | Numpy matrix.conjugate()

Python | Numpy matrix.conjugate()

With the help of Numpy matrix.conjugate() method, we are able to find the conjugate of a given matrix having one or more than one dimension.

Syntax : matrix.conjugate()

Return : Return conjugate of given matrix

Example #1 :
In this example we can see that matrix.conjugate() method is used to conjugate the matrix. Remember string type of matrix doesn’t work here.




# import the important module in python
import numpy as np
           
# make an array with numpy
gfg = np.matrix('[1 + 2j, 2 + 3j]')
           
# applying matrix.conjugate() method
neveropen = gfg.conjugate()
     
print(neveropen)


Output:

[[ 1.-2.j  2.-3.j]]

Example #2 :




# import the important module in python
import numpy as np
           
# make an array with numpy
gfg = np.matrix('[1 + 2j, 2 + 3j, 3-2j; 1-4j, 2-3j, 7 + 8j]')
           
# applying matrix.conjugate() method
neveropen = gfg.conjugate()
     
print(neveropen)


Output:

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

Most Popular

Dominic
32349 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7097 POSTS0 COMMENTS
Thapelo Manthata
6792 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS