jax.numpy.cos#

jax.numpy.cos(x, /)[source]#

Compute a trigonometric cosine of each element of input.

JAX implementation of numpy.cos.

Parameters:

x (ArrayLike) – scalar or array. Angle in radians.

Returns:

An array containing the cosine of each element in x, promotes to inexact dtype.

Return type:

Array

See also

Examples

>>> pi = jnp.pi
>>> x = jnp.array([pi/4, pi/2, 3*pi/4, 5*pi/6])
>>> with jnp.printoptions(precision=3, suppress=True):
...   print(jnp.cos(x))
[ 0.707 -0.    -0.707 -0.866]