jax.numpy.conj
jax.numpy.conj#
- jax.numpy.conj(x)#
Return the complex conjugate, element-wise.
LAX-backend implementation of
conjugate()
.Original docstring below.
The complex conjugate of a complex number is obtained by changing the sign of its imaginary part.
- Parameters
x (array_like) – Input value.
- Returns
y – The complex conjugate of x, with same dtype as y. This is a scalar if x is a scalar.
- Return type