Home >>Python cmath Module >Python cmath.asinh() Method

Python cmath.asinh() Method

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 Values

Parameter Description
X It is required to find the inverse hyperbolic sine of a number
Here is an Example of Python cmath.asinh() Method:

import cmath
print (cmath.asinh(4+3j))

Output:
(2.305509031243477+0.6339838656391766j)
Example 2:

import cmath
print (cmath.asinh(1+3j))

Output:
(1.8241987021938828+1.2330952175293441j)

No Sidebar ads