Java - StrictMath sinh(double x) 方法



描述

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

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

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

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

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

声明

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

public static double sinh(double x)

参数

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

返回值

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

异常

示例 1

以下示例演示了如何使用 StrictMath sinh() 方法获取正双精度值的双曲正弦值。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 45.0;

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

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

输出

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

StrictMath.sinh(0.7853981633974483)=0.8686709614860095

示例 2

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

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

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

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

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

输出

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

StrictMath.sinh(-0.7853981633974483)=-0.8686709614860095

示例 3

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

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

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

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

输出

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

StrictMath.sinh(0.0)=0.0
java_lang_strictmath.htm
广告