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


Javascript Math.cosh()用法及代码示例


Math.cosh()是JavaScript中的内置函数,用于计算数字的双曲余弦值。

用法:

Math.cosh(p)

    参数:该函数接受单个参数p,该参数p是要为其计算双曲余弦值的数字。

    返回:它返回数字的双曲余弦的计算值。

例子:


Input : Math.cosh(0)
Output: 1

说明:
这里计算任何数字的双曲余弦的公式为:数字e是一个数学常数,近似值等于2.718。

 \frac{e^{p} + e^{-p}}{2} = \frac{e^{0} + e^{-0}}{2}

 =\frac{1+1}{2}
 = 1

同样,可以在将p替换为所需数字后立即计算出任意数量的双曲余弦值。

Input :Math.cosh(12)
Output:81377.39571257407

说明:
与上面的计算相同,当我们输入12而不是p时,该值将变为上面显示的输出。

让我们看一些JavaScript代码:

  • 范例1:
    <script> 
      // Printing hyperbolic cosine of some numbers 
      // taken as parameter of Math.cosh() function. 
      document.write(Math.cosh(0) + "<br>"); 
      document.write(Math.cosh(1) + "<br>"); 
      document.write(Math.cosh(0) + "<br>"); 
      document.write(Math.cosh(22) + "<br>"); 
      document.write(Math.cosh(-2) + "<br>"); 
      document.write(Math.cosh(4)); 
    </script>

    输出:

     1
     1.5430806348152437
     1
     1792456423.065796
     3.7621956910836314
     27.308232836016487
    
  • 范例2:错误和异常,这是一种错误情况,因为不能将复数作为函数的参数,而只能将整数值作为参数。
    <script> 
      // complex number can not be calculated as the  
      //hyperbolic cosine. 
      document.write(Math.cosh(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.cosh("geeksforgeeks") + "<br>"); 
        document.write(Math.cosh("gfg"));                     
      </script>

      输出:

      NaN
      NaN
      

    应用:它的实际应用是,每当需要查找数字的双曲余弦值时,我们就使用JavaScript中的Math.cosh()函数。
    例:

    <script> 
      // Printing hyperbolic cosine of some numbers from 0 to 9 
      // taken as parameter of Math.cosh() function. 
      for (i = 0; i < 10; i++) { 
          document.write(Math.cosh(i) + "<br>"); 
      } 
    </script>

    输出:

    1
    1.5430806348152437
    3.7621956910836314
    10.067661995777765
    27.308232836016487
    74.20994852478785
    201.7156361224559
    548.317035155212
    1490.479161252178
    4051.5420254925943

    支持的浏览器:下面列出了JavaScript Math.cosh()函数支持的浏览器:

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


相关用法


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