JavaScript 中的 Math.atanh() 函数

htmljavascriptweb developmentfront end technology

Math 对象的 atanh() 函数接受一个数字并以弧度返回其双曲弧的反正切值。要将结果值转换为度数,请将其乘以 180,然后将结果除以 3.14159(pi 值)。

语法

其语法如下

Math.atanh(0.5)

示例

<html>
<head>
   <title>JavaScript 示例</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.atanh(0.5);
      document.write("反正切值:"+result);
      document.write("<br>");
      document.write("双曲反正切值(度):"+result*180/Math.PI);
   </script>
</body>
</html>

输出

反正切值:0.5493061443340548
反正切值(度):31.47292373094538

相关文章