JavaScript 中的 Math.asinh() 函数
Math 对象的 asinh() 函数接受一个数字并返回其以弧度为单位的双曲反正弦值。若想将结果值转换成角度,需将结果值乘以 180 并将其除以 3.14159(π 值)。
语法
其语法如下
Math.asinh(0.5)
示例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.asinh(90); document.write("Hyperbolic arcsine value: "+result); document.write("<br>"); document.write("Hyperbolic arcsine value in degrees: "+result*180/Math.PI); </script> </body> </html>
输出
Hyperbolic arcsine value: 5.192987713658941 Hyperbolic arcsine value in degrees: 297.53627905594817
广告