Wednesday, July 3, 2024
HomeLanguagesPythonPython | 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]]

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments