Java.lang.Math.tanh() 方法

描述

java.lang.Math.tanh(double x) 返回 double 值的双曲正切值。 x 的双曲正切定义为 (ex - e-x)/(ex + e-x),换句话说,sinh(x)/cosh(x)。 请注意,确切的 tanh 的绝对值始终小于 1。特殊情况 −

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

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

  • 如果参数为正无穷大,则结果为 +1.0。

  • 如果参数为负无穷大,则结果为-1.0。

计算结果必须在精确结果的 2.5 ulps 范围内。 任何有限输入的 tanh 结果必须具有小于或等于 1 的绝对值。请注意,一旦 tanh 的确切结果在极限值 1 的 ulp 的 1/2 范围内,则应返回正确签名的 1.0。


声明

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

public static double tanh(double x)

参数

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


返回值

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


异常

NA


示例

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

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 in radians
      x = Math.toRadians(x);
      y = Math.toRadians(y);

      // print the hyperbolic tangent of these doubles
      System.out.println("Math.tanh(" + x + ")=" + Math.tanh(x));
      System.out.println("Math.tanh(" + y + ")=" + Math.tanh(y));
   }
}

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

Math.tanh(0.7853981633974483)=0.6557942026326724
Math.tanh(-3.141592653589793)=-0.99627207622075