函数 acsch #

计算值的反双曲余割,定义为 acsch(x) = asinh(1/x) = ln(1/x + sqrt(1/x^2 + 1))

为避免与矩阵反双曲余割混淆,此函数不适用于矩阵。

Syntax #

math.acsch(x)

Parameters #

Parameter Type Description
x number | BigNumber | Complex 函数输入

Returns #

Type Description
number | BigNumber | Complex x 的反双曲余割

Throws #

Type | Description —- | ———–

Examples #

math.acsch(0.5)       // returns 1.4436354751788103

另请参阅 #

asech, acoth

Fork me on GitHub