Java StrictMath tanh()方法

java.lang.StrictMath.tanh() 方法返回double值的双曲正切值。 x 的双曲正切定义为 (ex - e-x)/(ex + e-x).它包括以下情况:

  • 如果参数为NaN,那么结果为NaN。
  • 如果参数是零,那么结果是参数为零相同的符号。
  • 如果参数为正无穷大,那么结果是1.0。
  • 如果参数为负无穷大,那么结果为-1.0。

1 语法

public static double tanh(double x)

2 参数

x : 这是它的双曲正切是要返回的数。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Enum compareTo()方法
 */
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

 

热门文章

优秀文章