java.lang.StrictMath.sinh()方法實例
java.lang.StrictMath.sinh() 方法返回double值的雙曲正弦值。 x的雙曲正弦被定義為 (ex - e-x)/2 其中e是歐拉數。它包括以下情況:
- 如果參數為NaN或無窮大,那麼結果為NaN。
- 如果參數為無窮大,那麼結果是相同的符號作為參數的無窮大。
- 如果參數是零,那麼結果是參數為零相同的符號。
聲明
以下是java.lang.StrictMath.sinh()方法的聲明
public static double sinh(double x)
參數
-
x -- 這是它的雙曲正弦要返回的數。
返回值
此方法返回x的雙曲正弦值。
異常
-
NA
例子
下麵的例子顯示java.lang.StrictMath.sinh()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = (90*Math.PI)/180 , d2 = 50, d3 = 0; // returns the hyperbolic sine of a double value double sinhValue = StrictMath.sinh(d1); System.out.println("Hyperbolic sine of d1 = " + sinhValue); sinhValue = StrictMath.sinh(d2); System.out.println("Hyperbolic sine of d2 = " + sinhValue); sinhValue = StrictMath.sinh(d3); System.out.println("Hyperbolic sine of d3 = " + sinhValue); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hyperbolic sin of d1 = 2.3012989023072947 Hyperbolic sin of d2 = 2.592352764293536E21 Hyperbolic sin of d3 = 0.0