java.lang.StrictMath.cosh()方法實例
java.lang.StrictMath.cosh() 方法返回double值的雙曲餘弦值。 x的雙曲餘弦定義為 (ex + e-x)/2 其中e是歐拉數。它包括以下情況:
- 如果參數為NaN,那麼結果為NaN。
- 如果參數為無窮大,那麼結果為正無窮大。
- 如果參數是零,那麼結果是1.0。
聲明
以下是java.lang.StrictMath.cosh()方法的聲明
public static double cosh(double x)
參數
-
x -- 這是要返回雙曲餘弦數。
返回值
此方法返回x的雙曲餘弦值。
異常
-
NA
例子
下麵的例子顯示java.lang.StrictMath.cosh()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = (60*(Math.PI))/180 , d2 = 0.0, d3 = (1.0/0.0) ; // returns the hyperbolic cosine of specified angle in radian double coshValue = StrictMath.cosh(d1); System.out.println("Hyperbolic cosine of d1 = " + coshValue); coshValue = StrictMath.cosh(d2); System.out.println("Hyperbolic cosine of d2 = " + coshValue); coshValue = StrictMath.cosh(d3); System.out.println("Hyperbolic cosine of d3 = " + coshValue); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hyperbolic cosine of d1 = 1.600286857702386 Hyperbolic cosine of d2 = 1.0 Hyperbolic cosine of d3 = Infinity