Home >>Python cmath Module >Python cmath.asinh() Method
Python cmath.asinh() method in python is used to returns the inverse hyperbolic sine of a number in radians and it accepts a number.
Syntax:cmath.asinh(x)
Parameter | Description |
---|---|
X | It is required to find the inverse hyperbolic sine of a number |
import cmath
print (cmath.asinh(4+3j))
import cmath
print (cmath.asinh(1+3j))