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


Java Java.lang.StrictMath.tanh()用法及代码示例



描述

这个java.lang.StrictMath.tanh() 方法返回双精度值的双曲正切值。的双曲正切x被定义为(ex - e-x)/(ex + e-x).它包括这些情况 -

  • 如果参数为NaN,则结果为NaN。
  • 如果自变量为零,则结果为零,其符号与自变量相同。
  • 如果参数为正无穷大,则结果为 +1.0。
  • 如果参数为负无穷大,则结果为 -1.0。

声明

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

public static double tanh(double x)

参数

x- 这是要返回其双曲正切的数字。

返回值

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

异常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = (90*Math.PI)/180 , d2 = 0.0;
      double d3 = (1.0)/(0.0), d4 = -(1.0)/(0.0);

      // returns the hyperbolic trigonometric tangent of an angle.

      double tanhValue = StrictMath.tanh(d1); 
      System.out.println("hyperbolic tangent of d1 = " + tanhValue);

      tanhValue = StrictMath.tanh(d2); 
      System.out.println("hyperbolic tangent of d2 = " + tanhValue);

      tanhValue = StrictMath.tanh(d3); 
      System.out.println("hyperbolic tangent of d3 = " + tanhValue);

      tanhValue = StrictMath.tanh(d4); 
      System.out.println("hyperbolic tangent of d4 = " + tanhValue);
   }
}

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

hyperbolic tangent of d1 = 0.9171523356672744
hyperbolic tangent of d2 = 0.0
hyperbolic tangent of d3 = 1.0
hyperbolic tangent of d4 = -1.0

相关用法


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