當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Math tanh()用法及代碼示例


下麵是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。

     tanh(p) = sinh(p)/cosh(p) = e^p-e^-p/e^p+e^-p = e^0-e^-0/e^0+e^-0 = 0



    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




相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript Math tanh() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。