Math.atanh() - JavaScript Math 对象
Math.atanh()
Math.atanh()
函数返回一个数值反双曲正切值,即:
\forall x \in \left(-1, 1 \right),\mathtt{\operatorname{Math.atanh}(x)}= \operatorname{arctanh}(x)= \text{the unique}\; y \;\text{such that}\;\tanh(y)= x
语法
Math.atanh(x)
参数
x
一个数值描述
由于atanh()
是Math 的静态方法
,所以应该像这样使用:Math.atanh()
,而不是作为你创建的Math
实例的方法(Math 不是一个构造函数
)。
示例
使用 Math.atanh()
Math.atanh(-2); // NaN Math.atanh(-1); // -Infinity Math.atanh(0); // 0 Math.atanh(0.5); // 0.5493061443340548 Math.atanh(1); // Infinity Math.atanh(2); // NaN
对于大于1或是小于-1的值,函数返回NaN
。
Polyfill
For \left|x\right|
Math.atanh = Math.atanh || function(x) { return Math.log((1+x)/(1-x)) / 2; };
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)