Math.sinh()是JavaScript中的內置函數,用於計算數字的雙曲正弦值。
用法:
Math.sinh(p)
參數:該函數接受單個參數p是要為其計算雙曲正弦值的數字。
返回值:它返回數字的雙曲正弦值的計算值。
例子:
Input : Math.sinh(0) Output : 0
說明:
此處,用於計算任意數量的雙曲正弦的公式為:數字e是一個數學常數,其近似值等於2.718。
以同樣的方式,隻需將p替換為所需的數字即可計算出任意數量的雙曲正弦值。
Input : Math.sinh(15) Output : 1634508.6862359024
說明:
這裏與上麵的計算相同,當我們將15代替p時,該值將變為上麵顯示的輸出。
讓我們看一些JavaScript代碼:
- 示例1:
<script> // Printing hyperbolic sine of some numbers // taken as parameter of Math.sinh() function. document.write(Math.sinh(0) + "<br>"); document.write(Math.sinh(1) + "<br>"); document.write(Math.sinh(5) + "<br>"); document.write(Math.sinh(22) + "<br>"); document.write(Math.sinh(-2) + "<br>"); document.write(Math.sinh(4)); </script>
輸出:
0 1.1752011936438014 74.20321057778875 1792456423.065796 -3.626860407847019 27.28991719712775
- 示例2:>這是一個錯誤情況,因為不能將複數用作函數的參數,而隻能將整數值用作參數。
<script> // complex number can not be calculated as //the hyperbolic sine. document.write(Math.sinh(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.sinh("geeksforgeeks") + "<br>"); document.write(Math.sinh("gfg")); </script>
輸出:
NaN NaN
應用程序:它的實際應用程序是每當需要查找數字的雙曲正弦值時,我們就使用JavaScript中的Math.sinh()函數。
- 示例1:
<script> // Printing hyperbolic sine of some numbers from 0 to 9 // taken as parameter of Math.sinh() function. for (i = 0; i < 10; i++) { document.write(Math.sinh(i) + "<br>"); } </script>
輸出:
0 1.1752011936438014 3.626860407847019 10.017874927409903 27.28991719712775 74.20321057778875 201.71315737027922 548.3161232732465 1490.4788257895502 4051.54190208279
支持的瀏覽器:下麵列出了JavaScript Math.sinh()函數支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- 火狐瀏覽器
- Opera
- 蘋果瀏覽器
相關用法
- Javascript Math.pow( )用法及代碼示例
- Javascript Array some()用法及代碼示例
- Javascript Number()用法及代碼示例
- Javascript Symbol.for()用法及代碼示例
- Javascript toExponential()用法及代碼示例
- Javascript toString()用法及代碼示例
- Javascript Math.abs( )用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | Math.sinh() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。