asinh#
- rbc.stdlib.elementwise_functions.asinh(x)#
Calculates an implementation-dependent approximation to the inverse hyperbolic sine for each element x_i in the input array x.
Examples
>>> from rbc.stdlib import array_api >>> @heavydb('double[](double[])') ... def array_api_asinh(arr): ... return array_api.asinh(arr) >>> array_api_asinh([np.e, 10.0]).execute() array([1.7253826, 2.998223 ], dtype=float32)