asinh()
function is used to find the the inverse hyperbolic sine of x in Python for the given input(x – parameter).
Syntax of asinh()
Function
The syntax of
asinh()
function in Python is:
math.asinh(x)
Parameters of asinh()
Function in Python
x
– Where x
is any valid python number (positive or negative). This parameter is required.Note: If the
x
parameter is not a number, asinh()
function will return an Error.
Compatibility
asinh()
function is available and compatible with both Python 2.x
and 3.x
. This function is a part of python standard math library.
Return Value of asinh()
Function in Python
asinh()
function returns the inverse hyperbolic sine of x for the given input.
Python asinh()
Function Example
# import math library import math print(math.asinh(-0.2)) print(math.asinh(0)) print(math.asinh(0.2)) print(math.asinh(77)) print(math.asinh(-3677))
Output: