jax.lax.conj#

jax.lax.conj(x)[source]#

Elementwise complex conjugate function: \(\overline{x}\).

This function lowers to a combination of stablehlo.real, stablehlo.imag, and stablehlo.complex.

Parameters:

x (ArrayLike) – input array. Must have complex dtype.

Returns:

Array of the same shape and dtype as x containing its complex conjugate.

Return type:

Array

See also