dpnp.conjugate

dpnp.conjugate(x, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]

Return the complex conjugate, element-wise.

The complex conjugate of a complex number is obtained by changing the sign of its imaginary part.

For full documentation refer to numpy.conjugate.

Returns:

out – The conjugate of each element of x.

Return type:

dpnp.ndarray

Limitations

Parameters x is only supported as either dpnp.ndarray or dpctl.tensor.usm_ndarray. Parameters where, dtype and subok are supported with their default values. Otherwise the function will be executed sequentially on CPU. Input array data types are limited by supported DPNP Data types.

Examples

>>> import dpnp as np
>>> np.conjugate(np.array(1+2j))
(1-2j)
>>> x = np.eye(2) + 1j * np.eye(2)
>>> np.conjugate(x)
array([[ 1.-1.j,  0.-0.j],
       [ 0.-0.j,  1.-1.j]])