Friday, September 5, 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
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS