How to use asinh() function to get the arc hyperbolic sine value of N in Python

1 Answer

0 votes
import math

print(math.asinh(0))
print(math.asinh(0.34))
print(math.asinh(-1))
print(math.asinh(1))


'''
run:

0.0
0.3337683516458822
-0.8813735870195429
0.8813735870195429

'''

 



answered Oct 3, 2017 by avibootz

Related questions

...