jax.numpy.sinh
Warning
This page was created from a pull request (#9655).
jax.numpy.sinh¶
- jax.numpy.sinh(x)¶
Hyperbolic sine, element-wise.
LAX-backend implementation of
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
References
M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions. New York, NY: Dover, 1972, pg. 83.