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


Javascript Math.tanh()用法及代碼示例


Math.tanh()是JavaScript中的內置函數,用於計算數字的雙曲正切值。
用法:

Math.tanh(p)

參數:該函數接受單個參數p,該參數p是要為其計算雙曲線正切值的數字。

返回值:它返回數字的雙曲正切的計算值。

例子:

Input :Math.tanh(0)
Output:0

說明:
此處,用於計算任何數字的雙曲正切的公式為:數字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
以同樣的方式,隻需將p替換為所需的數字,就可以計算任意數量的雙曲正切值。


Input :Math.tanh(18)
Output:0.9999999999999996

說明:
與上麵的計算相同,當我們輸入18而不是p時,該值將變為上麵顯示的輸出。
讓我們看一些JavaScript代碼:

  • 示例1:
    <script> 
      // Printing hyperbolic tangent of some numbers 
      // taken as parameter of Math.tanh() function. 
      document.write(Math.tanh(0)); 
      document.write(Math.tanh(1)); 
      document.write(Math.tanh(5)); 
      document.write(Math.tanh(22)); 
      document.write(Math.tanh(-2)); 
      document.write(Math.tanh(4)); 
    </script>

    輸出:

    0
    0.7615941559557649
    0.9999092042625951
    1
    -0.9640275800758169
    0.999329299739067
  • 示例2:這是一個錯誤情況,因為不能將複數用作函數的參數,而隻能將整數值用作參數。
    <script> 
      // complex number can not be calculated as the hyperbolic tangent. 
      documnet.write(Math.tanh(1 + 2i)); 
    </script>

    輸出:

    Error: Invalid or unexpected token
  • 示例3:除了整數外,什麽都不作為函數的參數,這就是為什麽這裏的字符串作為參數給出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")); 
      document.write(Math.tanh("gfg")); 
    </scrippt>

    輸出:

    NaN
    NaN

應用程序:它的實際應用程序是,每當需要查找數字的雙曲正切值時,我們就使用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>"); 
      }

    輸出:

    0
    0.7615941559557649
    0.9640275800758169
    0.9950547536867305
    0.999329299739067
    0.9999092042625951
    0.9999877116507956
    0.9999983369439447
    0.9999997749296758
    0.999999969540041

支持的瀏覽器:下麵列出了JavaScript Math.tanh()函數支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • 歌劇
  • 蘋果瀏覽器


相關用法


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