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


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


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

  • 例:
    <script> 
       // Here different values is being used for 
       // getting hyperbolic sine function's values. 
       document.write(Math.asinh(3)); 
       document.write(Math.asinh(22)); 
       document.write(Math.asinh(-1)); 
       document.write(Math.asinh(1)); 
    </script>
  • 輸出:
     1.8184464592320668
     3.7847057630994327
    -0.881373587019543
     0.881373587019543
    

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

if y = asinh(x)
then x = sinh(y)
We have,
acosh(x)=ln(x+√ x2+1 )

用法:

Math.asinh(x)

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



    • x:x是要計算其雙曲反正弦的數字。

    返回值:它返回給定數字的雙曲反正弦。

    以下示例說明了JavaScript中的Math asinh()方法:

    • 範例1:在此示例中,在math.asinh()函數中將正整數“2”作為參數傳遞,它返回所傳遞參數的雙曲反正弦值。
      Input:Math.asinh(2)
      Output:1.4436354751788103
    • 範例2:在此示例中,將“0”作為參數傳遞給math.asinh()函數,它返回所傳遞參數的雙曲反正弦值。
      Input:Math.asinh(0)
      Output:0
    • 範例3:在此示例中,在math.asinh()函數中將負整數“-1”作為參數傳遞,它返回所傳遞參數的雙曲反正弦值。
      Input:Math.asinh(-1)
      Output:-0.881373587019543

    上述方法的更多示例代碼如下:
    程序1:每當我們需要獲取一定數量的雙曲正弦值時,我們就可以利用JavaScript中的Math.asinh()函數。

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

    輸出:

 2.3124383412727525
 3.179785437699879

程序2:

<script> 
    // Here different values is being used 
    // for getting hyperbolic cosine function's values. 
    document.write(Math.asinh('Geeks')+"<br>"); 
    document.write(Math.asinh('Geeksforgeeks')); 
</script>   

輸出:

NaN
NaN

支持的瀏覽器:

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




相關用法


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