dpnp.arccos
- dpnp.arccos(x, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]
Trigonometric inverse cosine, element-wise.
For full documentation refer to
numpy.arccos
.- Returns:
out – The inverse cosine of each element of x.
- Return type:
dpnp.ndarray
Limitations
Parameter x is only supported as either
dpnp.ndarray
ordpctl.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.cos
Trigonometric cosine, element-wise.
dpnp.arctan
Trigonometric inverse tangent, element-wise.
dpnp.arcsin
Trigonometric inverse sine, element-wise.
dpnp.arccosh
Hyperbolic inverse cosine, element-wise.
Examples
>>> import dpnp as np >>> x = np.array([1, -1]) >>> np.arccos(x) array([0.0, 3.14159265])