dpnp.arcsinh
- dpnp.arcsinh(x, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]
Inverse hyperbolic sine, element-wise.
For full documentation refer to
numpy.arcsinh.- Returns:
out – The hyperbolic inverse sine 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.sinhHyperbolic sine, element-wise.
dpnp.arctanhHyperbolic inverse tangent, element-wise.
dpnp.arccoshHyperbolic inverse cosine, element-wise.
dpnp.arcsinTrigonometric inverse sine, element-wise.
Examples
>>> import dpnp as np >>> x = np.array([np.e, 10.0]) >>> np.arcsinh(x) array([1.72538256, 2.99822295])