java.lang.Math.tanh(double x)方法實例
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 ulp準確結果。雙曲正切對於任何有限的輸入的結果必須有一個絕對值小於或等於1。注意,一旦雙曲正切的確切結果1/2 限值ulp 的一半,正確+1.0 被返回。
聲明
以下是java.lang.Math.tanh()方法的聲明
public static double tanh(double x)
參數
-
x -- 返回數的雙曲正切值。
返回值
此方法返回x的雙曲正切值。
異常
-
NA
例子
下麵的例子顯示lang.Math.tanh()方法的使用。
package com.yiibai; 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