当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Math acosh()用法及代码示例


下面是Math acosh()方法的示例。

  • 例:
    <script> 
        // Here different values is being used for 
        // getting hyperbolic cosine method's values. 
        document.write(Math.acosh(2)+"<br>"); 
        document.write(Math.acosh(1)+"<br>"); 
        document.write(Math.acosh(3)+"<br>"); 
        document.write(Math.acosh(10)); 
    </script>
  • 输出:
    1.3169578969248166
    0
    1.7627471740390859
    2.993222846126381
    

Math.acosh()方法用于获取数字的双曲反余弦。双曲反余弦有许多名称,例如双曲反余弦和acosh。它是双曲余弦方法的逆,即任何值的反双曲余弦说x是值y,而y的双曲余弦为x。

if y = acosh(x)
then x = cosh(y)

For all x≥1,
we have acosh(x)=ln(x+√ x2-1 )

用法:



Math.acosh(x)

    参数:此方法接受如上所述和以下描述的单个参数:

  • x:x是要计算其双曲反余弦的数字。
  • 返回值:它返回给定数字的双曲反余弦值,如果数字小于1,则返回NaN,即不是数字。

    以下示例说明了JavaScript中的Math acosh()方法。

    • 范例1:在这里,输出0是数字1的双曲反余弦。
      Input:Math.acosh(1)
      Output:0
    • 范例2:
      Input:Math.acosh(2)
      Output:1.3169578969248166
    • 范例3:
      Input:Math.acosh(3)
      Output:1.7627471740390859

    上述方法的更多示例代码如下:
    程序1:这是一个错误情况,因为不能将复数作为方法的参数,而只能将整数值作为参数。

    <script> 
       // Complex number can not be  
       // calculated as the hyperbolic arc-cosine. 
       console.log(Math.acosh(1 + 2i)); 
    </script>

    输出:

Error:Invalid or unexpected token

程序2:除整数外,什么都不接受作为方法的参数,这就是为什么这里的字符串作为参数给出NaN即不是数字。

<script> 
   // Any string value as the parameter of the 
   // method gives NaN i.e, not a number 
   // because only number can be used as the 
   // parameters. 
   document.write(Math.acosh("geeksforgeeks")+"<br>"); 
   document.write(Math.acosh("gfg")); 
</script>

输出:

NaN
NaN

程序3:v>每当我们需要获取一定数量的双曲反余弦时,我们可以借助JavaScript中的Math.acosh()方法。

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

输出:

2.2924316695611777
3.176313180591656

支持的浏览器:

  • 谷歌浏览器38.0
  • Internet Explorer 12.0
  • Firefox 25.0
  • Opera 8.0
  • Safari 25.0




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript Math acosh() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。