The cmath.sinh()
function calculates the hyperbolic sine of a complex number given in radians. The angle must be in radians and not degrees.
cmath.sinh(x)
copy
x |
The angle(in radians) whose hyperbolic sine we want. The vale can be a real number or complex number. If it is a complex number, it is first converted to a complex value before the operation. |
The function returns the hyperbolic sine of the input argument, x
.