This is documentation for an old release of NumPy (version 1.3.). Read this page Search for this page in the documentation of the latest stable release (version > 1.17).
numpy.sinh
-
numpy.sinh(x[, out])
Hyperbolic sine, element-wise.
Equivalent to 1/2 * (np.exp(x) - np.exp(-x)) or
-1j * np.sin(1j*x).
Parameters: | x : array_like
Input array.
|
Returns: | out : ndarray
Output array of same shape as x.
|