Java - Math sinh(double x) 方法



描述

Java Math sinh(double x)方法返回双精度值的双曲正弦。双曲正弦 x 定义为 (ex - e-x)/2,其中 e 是欧拉数。特殊情况 -

  • 如果参数为 NaN,则结果为 NaN。

  • 如果参数为无穷大,则结果为与参数符号相同的无穷大。

  • 如果参数为零,则结果为与参数符号相同的零。

计算结果必须在精确结果的 2.5 ulps 之内。

声明

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

public static double sinh(double x)

参数

x − 要返回其双曲正弦的数字。

返回值

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

异常

计算正双精度值的双曲正弦示例

以下示例显示了使用 Math sinh() 方法获取正双精度值的双曲正弦值。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 45.0;

      // convert it to radian
      x = Math.toRadians(x);

      // print the hyperbolic sine for this double
      System.out.println("Math.sinh(" + x + ")=" + Math.sinh(x));
   }
}

输出

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

Math.sinh(0.7853981633974483)=0.8686709614860095

计算负双精度值的双曲正弦示例

以下示例显示了使用 Math sinh() 方法获取负双精度值的双曲正弦值。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = -45.0;

      // convert it to radian
      x = Math.toRadians(x);

      // print the hyperbolic sine for this double
      System.out.println("Math.sinh(" + x + ")=" + Math.sinh(x));
   }
}

输出

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

Math.sinh(-0.7853981633974483)=-0.8686709614860095

计算零双精度值的双曲正弦示例

以下示例显示了使用 Math sinh() 方法获取零双精度值的双曲正弦值。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // convert it to radian
      x = Math.toRadians(x);

      // print the hyperbolic sine for this double
      System.out.println("Math.sinh(" + x + ")=" + Math.sinh(x));
   }
}

输出

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

Math.sinh(0.0)=0.0
java_lang_math.htm
广告