dpnp.arcsinh
- dpnp.arcsinh(x1)[source]
Inverse hyperbolic sine, element-wise.
For full documentation refer to
numpy.arcsinh
.Limitations
Input array is supported as
dpnp.ndarray
. Input array data types are limited by supported DPNP Data types.Examples
>>> import numpy >>> import dpnp as np >>> x = np.array([numpy.e, 10.0]) >>> out = np.arcsinh(x) >>> [i for i in out] [1.72538256, 2.99822295]