dpnp.arccosh
- dpnp.arccosh(x1)[source]
Trigonometric inverse hyperbolic cosine, element-wise.
For full documentation refer to
numpy.arccosh.Limitations
Input array is supported as
dpnp.ndarray. Input array data types are limited by supported DPNP Data types.See also
dpnp.coshHyperbolic cosine, element-wise.
dpnp.arcsinhInverse hyperbolic sine element-wise.
dpnp.sinhHyperbolic sine, element-wise.
dpnp.arctanhInverse hyperbolic tangent element-wise.
dpnp.tanhCompute hyperbolic tangent element-wise.
Examples
>>> import numpy >>> import dpnp as np >>> x = np.array([numpy.e, 10.0]) >>> out = np.arccosh(x) >>> [i for i in out] [1.65745445, 2.99322285]