jax.lax.asin#
- jax.lax.asin(x)[source]#
Elementwise arc sine: \(\mathrm{asin}(x)\).
This function lowers directly to the
chlo.asin
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 sine.- Return type:
See also
jax.lax.sin()
: elementwise sine.jax.lax.acos()
: elementwise arc cosine.jax.lax.atan()
: elementwise arc tangent.