java.lang.StrictMath.tanh() 方法返回double值的雙曲正切值。 x 的雙曲正切定義為 (ex - e-x)/(ex + e-x).它包括以下情況:
以下是java.lang.StrictMath.tanh()方法的宣告
public static double tanh(double x)
x -- 這是它的雙曲正切是要返回的數。
此方法返回x的雙曲正切值。
NA
下面的例子顯示java.lang.StrictMath.tanh()方法的使用。
package com.yiibai; 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