jax.lax.acos#

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

Elementwise arc cosine: \(\mathrm{acos}(x)\).

This function lowers directly to the chlo.acos operation.

Parameters:

x (ArrayLike) – input array. Must have floating-point or complex type.

Returns:

Array of the same shape and dtype as x containing the element-wise arc cosine.

Return type:

Array

See also