dpnp.cos
- dpnp.cos(x, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]
 Trigonometric cosine, element-wise.
For full documentation refer to
numpy.cos.- Returns:
 out – The cosine of each element of x.
- Return type:
 dpnp.ndarray
Limitations
Parameter x is only supported as either
dpnp.ndarrayordpctl.tensor.usm_ndarray. Parameters where, dtype and subok are supported with their default values. Keyword argument kwargs is currently unsupported. Otherwise the function will be executed sequentially on CPU. Input array data types are limited by supported DPNP Data types.See also
dpnp.arccosTrigonometric inverse cosine, element-wise.
dpnp.sinTrigonometric sine, element-wise.
dpnp.tanTrigonometric tangent, element-wise.
dpnp.coshHyperbolic cosine, element-wise.
Examples
>>> import dpnp as np >>> x = np.array([0, np.pi/2, np.pi]) >>> np.cos(x) array([ 1.000000e+00, -4.371139e-08, -1.000000e+00])