下麵是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是要計算其雙曲反正弦的數字。
- 範例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
參數:此方法接受如上所述和以下描述的單個參數:
返回值:它返回給定數字的雙曲反正弦。
以下示例說明了JavaScript中的Math asinh()方法:
上述方法的更多示例代碼如下:
程序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
相關用法
- Javascript Math.asinh( )用法及代碼示例
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math random()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math exp()用法及代碼示例
- JavaScript Math log()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math min()用法及代碼示例
- JavaScript Math max()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math asin()用法及代碼示例
- JavaScript Math atan()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript Math asinh() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。