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


Java 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 uls 以内。任何有限输入的 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

相关用法


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