求一个数的反双曲正切。
math.atanh(x)复制
math.atanh(x)
def test(): ret=math.atanh(0.5) print(ret)复制
def test():
ret=math.atanh(0.5)
print(ret)