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


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


下麵是Math acosh()方法的示例。

  • 例:
    <script> 
        // Here different values is being used for 
        // getting hyperbolic cosine method's values. 
        document.write(Math.acosh(2)+"<br>"); 
        document.write(Math.acosh(1)+"<br>"); 
        document.write(Math.acosh(3)+"<br>"); 
        document.write(Math.acosh(10)); 
    </script>
  • 輸出:
    1.3169578969248166
    0
    1.7627471740390859
    2.993222846126381
    

Math.acosh()方法用於獲取數字的雙曲反餘弦。雙曲反餘弦有許多名稱,例如雙曲反餘弦和acosh。它是雙曲餘弦方法的逆,即任何值的反雙曲餘弦說x是值y,而y的雙曲餘弦為x。

if y = acosh(x)
then x = cosh(y)

For all x≥1,
we have acosh(x)=ln(x+√ x2-1 )

用法:



Math.acosh(x)

    參數:此方法接受如上所述和以下描述的單個參數:

  • x:x是要計算其雙曲反餘弦的數字。
  • 返回值:它返回給定數字的雙曲反餘弦值,如果數字小於1,則返回NaN,即不是數字。

    以下示例說明了JavaScript中的Math acosh()方法。

    • 範例1:在這裏,輸出0是數字1的雙曲反餘弦。
      Input:Math.acosh(1)
      Output:0
    • 範例2:
      Input:Math.acosh(2)
      Output:1.3169578969248166
    • 範例3:
      Input:Math.acosh(3)
      Output:1.7627471740390859

    上述方法的更多示例代碼如下:
    程序1:這是一個錯誤情況,因為不能將複數作為方法的參數,而隻能將整數值作為參數。

    <script> 
       // Complex number can not be  
       // calculated as the hyperbolic arc-cosine. 
       console.log(Math.acosh(1 + 2i)); 
    </script>

    輸出:

Error:Invalid or unexpected token

程序2:除整數外,什麽都不接受作為方法的參數,這就是為什麽這裏的字符串作為參數給出NaN即不是數字。

<script> 
   // Any string value as the parameter of the 
   // method gives NaN i.e, not a number 
   // because only number can be used as the 
   // parameters. 
   document.write(Math.acosh("geeksforgeeks")+"<br>"); 
   document.write(Math.acosh("gfg")); 
</script>

輸出:

NaN
NaN

程序3:v>每當我們需要獲取一定數量的雙曲反餘弦時,我們可以借助JavaScript中的Math.acosh()方法。

<script> 
    // Here different values is being used for getting 
    // hyperbolic cosine method's values. 
    document.write(Math.acosh(5)+"<br>"); 
    document.write(Math.acosh(12)); 
</script>

輸出:

2.2924316695611777
3.176313180591656

支持的瀏覽器:

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




相關用法


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