java.lang.StrictMath.sinh() 方法返回double值的雙曲正弦值。 x的雙曲正弦被定義為 (ex - e-x)/2 其中e是歐拉數。它包括以下情況:
以下是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