下面是Math atanh()方法的示例。
- 例:
<script type="text/javascript"> document.write("When 1 is passed as a parameter:" + Math.atanh(1)); </script>
- 输出:
When 1 is passed as a parameter:Infinity
Math.atanh()方法用于返回数字的双曲反正切。 atanh()是Math的静态方法,因此它始终用作Math.atanh(),而不是用作创建的Math对象的方法。
Math.atanh (x) = arctanh(x) = y such that tanh (y) = x
用法:
Math.atanh(value)
参数:此方法接受如上所述和以下描述的单个参数:
- value:此参数保存您想知道其双曲arc-tangent的编号。
返回值:它返回给定数字的双曲arc-tangent。
以下示例说明了JavaScript中的Math atanh()方法
- 范例1:
Input:Math.atanh(1) Output:Infinity
- 范例2:
Input:Math.atanh(0) Output:0
- 范例3:
Input:Math.atanh(2) Output:NaN
- 范例4:
Input:Math.atanh(0.5) Output:0.5493061443340548
上述方法的更多示例代码如下:
图1:
<script type="text/javascript">
document.write("When 0 is passed as a parameter:"
+ Math.atanh(0));
</script>
输出:
When 0 is passed as a parameter:0
程序2:
<script type="text/javascript">
document.write("When 2 is passed as a parameter:"
+ Math.atanh(2));
</script>
输出:
When 2 is passed as a parameter:NaN
程序3:
<script type="text/javascript">
document.write("When 0.5 is passed as a parameter:"
+ Math.atanh(0.5));
</script>
输出:
When 0.5 is passed as a parameter:0.5493061443340548
支持的浏览器:
- 谷歌浏览器38.0
- Internet Explorer 12.0
- Firefox 25.0
- Opera 25.0
- Safari 8.0
相关用法
- Javascript Math.atanh()用法及代码示例
- PHP atanh( )用法及代码示例
- JavaScript Math cosh()用法及代码示例
- JavaScript Math random()用法及代码示例
- JavaScript Math round()用法及代码示例
- JavaScript Math abs()用法及代码示例
- JavaScript Math sqrt()用法及代码示例
- JavaScript Math floor()用法及代码示例
- JavaScript Math pow()用法及代码示例
- JavaScript Math trunc()用法及代码示例
- JavaScript Math exp()用法及代码示例
- JavaScript Math log()用法及代码示例
- JavaScript Math cos()用法及代码示例
- JavaScript Math tan()用法及代码示例
- JavaScript Math ceil()用法及代码示例
- JavaScript Math sin()用法及代码示例
- JavaScript Math min()用法及代码示例
- JavaScript Math max()用法及代码示例
- JavaScript Math acos()用法及代码示例
- JavaScript Math asin()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 JavaScript Math atanh() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。