下面是Math tanh()方法的示例。
- 例:
<script> // Printing hyperbolic tangent of some numbers // taken as parameter of Math.tanh() function. document.write(Math.tanh(0)+"<br>"); document.write(Math.tanh(1)+"<br>"); document.write(Math.tanh(5)+"<br>"); document.write(Math.tanh(22)+"<br>"); document.write(Math.tanh(-2)+"<br>"); document.write(Math.tanh(4)+"<br>"); </script>
- 输出:
0 0.7615941559557649 0.9999092042625951 1 -0.9640275800758169 0.999329299739067
Math.tanh()方法用于计算数字的双曲正切值。
用法:
Math.tanh(x)
参数:此方法接受如上所述和以下描述的单个参数:
- x:这是要为其计算双曲正切值的数字。
返回值:它返回数字的双曲正切的计算值。
- Example 1:在此,用于计算任意数字e的双曲正切的公式是一个数学常数,其近似值等于2.718。
Input:Math.tanh(0) Output:0
- Example 2:以同样的方式,只需将p替换为所需的数字,就可以计算任意数量的双曲正切值。这里与上面的计算相同,当我们输入18而不是x时,该值将变为上面显示的输出。
Input:Math.tanh(18) Output:0.9999999999999996
上述方法的更多代码如下:
程序1:这是一个错误情况,因为不能将复数用作函数的参数,而只能将整数值用作参数。
<script>
// complex number can not be calculated
// as the hyperbolic tangent.
documnet.write(Math.tanh(1 + 2i));
</script>
输出:
Error:Invalid or unexpected token
程序2:除了整数以外,什么都不作为函数的参数,这就是为什么这里的字符串作为参数给出NaN即不是数字。
<script>
// Any string value as the parameter of the function
// gives NaN i.e, not a number
// because only number can be used as the parameters.
document.write(Math.tanh("geeksforgeeks")+"<br>");
document.write(Math.tanh("gfg"));
</script>
输出:
NaN NaN
程序3:它的实际应用是,每当需要查找数字的双曲正切值时,我们就使用JavaScript中的Math.tanh()函数。
<script>
// Printing hyperbolic tangent of some
// numbers from 0 to 9
// taken as parameter of Math.tanh() function.
for (i = 0; i < 10; i++)
{
document.write(Math.tanh(i) + "<br>");
}
</script>
输出:
0 0.7615941559557649 0.9640275800758169 0.9950547536867305 0.999329299739067 0.9999092042625951 0.9999877116507956 0.9999983369439447 0.9999997749296758 0.999999969540041
支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- PHP tanh( )用法及代码示例
- 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()用法及代码示例
- JavaScript Math atan()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript Math tanh() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。