sinh#

rbc.stdlib.elementwise_functions.sinh(x)#

Calculates an implementation-dependent approximation to the hyperbolic sine for each element x_i of the input array x.

Examples

>>> from rbc.stdlib import array_api
>>> @heavydb('double(double)')
... def array_api_sinh(x):
...     return array_api.sinh(x)
>>> array_api_sinh(0).execute()
0.0
>>> array_api_sinh(np.pi).execute()
11.548739

Array-API ‘sinh’ doc