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


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


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

用法:

Math.sinh(p)

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

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

例子:


Input  : Math.sinh(0)
Output : 0

说明:
此处,用于计算任意数量的双曲正弦的公式为:数字e是一个数学常数,其近似值等于2.718。

  e^p-e^-^p/2

 = e^0-e^-^0/2

 = 1-1/2

 = 0

以同样的方式,只需将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
  • 苹果浏览器


相关用法


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