Java.lang.Math.sinh() 方法

描述

此方法返回 a 的正平方根。 如果参数为 NaN 或小于零,则结果为 NaN。

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

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

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

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


声明

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

public static double sinh(double x)

参数

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


返回值

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


异常

NA


示例

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

package com.tutorialspoint;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers numbers
      double x = 45;
      double y = -180;

      // convert them to radians
      x = Math.toRadians(x);
      y = Math.toRadians(y);

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

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

sinh(0.7853981633974483)=0.8686709614860095
sinh(-3.141592653589793)=-11.548739357257748