Python3 math.atanh()方法 - 求反雙曲正切值

2023-04-24 14:09 更新

Python math 模塊 math 模塊


描述

math.atanh(x) 返回 x 的反雙曲正切值。

math.atanh(x) 的參數(shù)介于 -0.99 到 0.99 之間。


語(yǔ)法

math.atanh() 方法語(yǔ)法如下:

math.atanh(x)

參數(shù)說(shuō)明:

  • x -- 必需,介于 -0.99 和 0.99 之間的正數(shù)或負(fù)數(shù)。 如果 x 不是數(shù)字,則返回 ?TypeError?.

返回值

返回一個(gè)浮點(diǎn)數(shù),表示 x 的反雙曲正切值。


實(shí)例

以下實(shí)例返回?cái)?shù)字的雙曲正切值:

# 導(dǎo)入 math 包
import math

# 輸出雙曲正切值
print(math.atanh(0.59))
print(math.atanh(-0.12))

輸出結(jié)果:

0.6776660677579618
-0.12058102840844402

Python math 模塊 math 模塊


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)