dpnp.arccosh

dpnp.arccosh(x, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]

Inverse hyperbolic cosine, element-wise.

For full documentation refer to numpy.arccosh.

Returns:

out – The hyperbolic inverse cosine of each element of x.

Return type:

dpnp.ndarray

Limitations

Parameter x is only supported as either dpnp.ndarray or dpctl.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.cosh

Hyperbolic cosine, element-wise.

dpnp.arctanh

Hyperbolic inverse tangent, element-wise.

dpnp.arcsinh

Hyperbolic inverse sine, element-wise.

dpnp.arccos

Trigonometric inverse cosine, element-wise.

Examples

>>> import dpnp as np
>>> x = np.array([1.0, np.e, 10.0])
>>> np.arccosh(x)
array([0.0, 1.65745445, 2.99322285])