Home >>Python cmath Module >Python cmath.sinh() Method
Python cmath.sinh() method returns a complex number with the hyperbolic sine.
Syntax:cmath.sinh(x)
Parameter | Description |
---|---|
x | It is a required parameter to find the hyperbolic sine of a number |
import cmath
print (cmath.sinh(1 + 3j))
import cmath
print (cmath.sinh(2 + 2j))