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:
See also
jax.lax.cos()
: elementwise cosine.jax.lax.asin()
: elementwise arc sine.jax.lax.atan()
: elementwise arc tangent.