jax.numpy.sinh

Contents

jax.numpy.sinh#

jax.numpy.sinh(x, /)[source]#

Hyperbolic sine, element-wise.

LAX-backend implementation of numpy.sinh().

Original docstring below.

Equivalent to 1/2 * (np.exp(x) - np.exp(-x)) or -1j * np.sin(1j*x).

Parameters:

x (array_like) – Input array.

Returns:

y – The corresponding hyperbolic sine values. This is a scalar if x is a scalar.

Return type:

ndarray

References

M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions. New York, NY: Dover, 1972, pg. 83.