The conjugate()
function in NumPy is used to return, element-wise, the complex conjugate of an input array that is passed to it. This is done by simply changing the sign of the imaginary part of the input value.
numpy.conjugate(x1, /, out=None, *, where=True)
The conj()
function takes the following parameter values:
x
: This represents the input array of complex values. This is a required parameter value.out
: This represents the location where the result is stored. This is an optional parameter value. where
: This is the condition over which the input is broadcast. At a given location where this condition is True
, the resulting array is set to the ufunc
result. Otherwise, the resulting array retains its original value. This is an optional parameter value. kwargs
: This represents the other keyword arguments. This is an optional parameter value. The conjugate()
function returns a complex conjugate of the input value that has the same data type as the input value.
import numpy as np# creating an input array of complex valuesx = np.array([1+2j, 2-3j, 1+5j])# implementing the conjugate() functionmyarray = np.conjugate(x)print(x)print(myarray)
numpy
module.x
with complex values, using the array()
function.conjugate()
function on the input array. We assign the result to a variable called myarray
.x
.myarray
.