How to get the inverse hyperbolic tangent of N in Python

1 Answer

0 votes
import math

print(math.atanh(0.9))
print(math.atanh(-0.9))
print(math.atanh(-0.1))
print(math.atanh(0.1))


'''
run:

1.4722194895832204
-1.4722194895832204
-0.1003353477310756
0.1003353477310756

'''

 



answered Oct 11, 2017 by avibootz

Related questions

3 answers 143 views
1 answer 233 views
1 answer 179 views
1 answer 109 views
...