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


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


Math.cosh()是JavaScript中的內置函數,用於計算數字的雙曲餘弦值。

用法:

Math.cosh(p)

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

    返回:它返回數字的雙曲餘弦的計算值。

例子:


Input : Math.cosh(0)
Output: 1

說明:
這裏計算任何數字的雙曲餘弦的公式為:數字e是一個數學常數,近似值等於2.718。

 \frac{e^{p} + e^{-p}}{2} = \frac{e^{0} + e^{-0}}{2}

 =\frac{1+1}{2}
 = 1

同樣,可以在將p替換為所需數字後立即計算出任意數量的雙曲餘弦值。

Input :Math.cosh(12)
Output:81377.39571257407

說明:
與上麵的計算相同,當我們輸入12而不是p時,該值將變為上麵顯示的輸出。

讓我們看一些JavaScript代碼:

  • 範例1:
    <script> 
      // Printing hyperbolic cosine of some numbers 
      // taken as parameter of Math.cosh() function. 
      document.write(Math.cosh(0) + "<br>"); 
      document.write(Math.cosh(1) + "<br>"); 
      document.write(Math.cosh(0) + "<br>"); 
      document.write(Math.cosh(22) + "<br>"); 
      document.write(Math.cosh(-2) + "<br>"); 
      document.write(Math.cosh(4)); 
    </script>

    輸出:

     1
     1.5430806348152437
     1
     1792456423.065796
     3.7621956910836314
     27.308232836016487
    
  • 範例2:錯誤和異常,這是一種錯誤情況,因為不能將複數作為函數的參數,而隻能將整數值作為參數。
    <script> 
      // complex number can not be calculated as the  
      //hyperbolic cosine. 
      document.write(Math.cosh(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.cosh("geeksforgeeks") + "<br>"); 
        document.write(Math.cosh("gfg"));                     
      </script>

      輸出:

      NaN
      NaN
      

    應用:它的實際應用是,每當需要查找數字的雙曲餘弦值時,我們就使用JavaScript中的Math.cosh()函數。
    例:

    <script> 
      // Printing hyperbolic cosine of some numbers from 0 to 9 
      // taken as parameter of Math.cosh() function. 
      for (i = 0; i < 10; i++) { 
          document.write(Math.cosh(i) + "<br>"); 
      } 
    </script>

    輸出:

    1
    1.5430806348152437
    3.7621956910836314
    10.067661995777765
    27.308232836016487
    74.20994852478785
    201.7156361224559
    548.317035155212
    1490.479161252178
    4051.5420254925943

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

    • 穀歌瀏覽器38.0
    • Internet Explorer 12.0
    • Firefox 25.0
    • Opera 25.0
    • Safari 8.0


相關用法


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