MathF.Atanh(Single) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回双曲正切值为指定数字的角度。
public:
static float Atanh(float x);
public static float Atanh (float x);
static member Atanh : single -> single
Public Shared Function Atanh (x As Single) As Single
参数
- x
- Single
一个表示双曲正切值的数字,其中 x
必须大于等于 -1 但小于等于 1。
返回
角度 θ,以弧度为单位,满足 -∞ < θ <-1 或 1 < θ < ∞。
- 或 -
如果 x
< -1 或 x
> 1 或 x
等于 NaN,则为 NaN。
注解
将返回值乘以 180/MathF.PI 以从弧度转换为度。
此方法调用基础 C 运行时,不同的操作系统或体系结构的确切结果或有效输入范围可能有所不同。