numpy.sinh()
numpy.sinh
-
numpy.sinh(x[, out]) = <ufunc 'sinh'>
-
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.
out : ndarray, optional
Output array of same shape as
x
.Returns: y : ndarray
The corresponding hyperbolic sine values.
Raises: Valu