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


Java Java.lang.StrictMath.sinh()用法及代码示例



描述

这个java.lang.StrictMath.sinh() 方法返回双精度值的双曲正弦值。 x 的双曲正弦定义为(ex - e-x)/2在哪里eEuler's number.它包括这些情况 -

  • 如果参数为 NaN 或无穷大,则结果为 NaN。
  • 如果参数为无穷大,则结果为无穷大,其符号与参数相同。
  • 如果自变量为零,则结果为零,其符号与自变量相同。

声明

以下是声明java.lang.StrictMath.sinh()方法

public static double sinh(double x)

参数

x- 这是要返回其双曲正弦值的数字。

返回值

此方法返回 x 的双曲正弦值。

异常

NA

示例

下面的例子展示了 java.lang.StrictMath.sinh() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = (90*Math.PI)/180 , d2 = 50, d3 = 0;
   
      // returns the hyperbolic sine of a double value

      double sinhValue = StrictMath.sinh(d1); 
      System.out.println("Hyperbolic sine of d1 = " + sinhValue);

      sinhValue = StrictMath.sinh(d2); 
      System.out.println("Hyperbolic sine of d2 = " + sinhValue);

      sinhValue = StrictMath.sinh(d3); 
      System.out.println("Hyperbolic sine of d3 = " + sinhValue);
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

Hyperbolic sin of d1 = 2.3012989023072947
Hyperbolic sin of d2 = 2.592352764293536E21
Hyperbolic sin of d3 = 0.0

相关用法


注:本文由纯净天空筛选整理自 Java.lang.StrictMath.sinh() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。