java.lang.Math.cosh(double a) 返回double雙曲餘弦值。特殊情況:
如果引數為NaN,那麼結果為NaN。
如果引數為無窮大,那麼結果為正無窮大。
如果引數是零,那麼結果是1.0。
計算結果必須在2.5 ulp 準確結果 。
以下是java.lang.Math.cosh()方法的宣告
public static double cosh(double x)
x -- 雙曲餘弦值將被返回。
此方法返回x的雙曲餘弦值。
NA
下面的例子顯示lang.Math.cosh()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 45.0; double y = 180.0; // convert them to radians x = Math.toRadians(x); y = Math.toRadians(y); // print their hyperbolic cosine System.out.println("Math.cosh(" + x + ")=" + Math.cosh(x)); System.out.println("Math.cosh(" + y + ")=" + Math.cosh(y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.cosh(0.7853981633974483)=1.3246090892520057 Math.cosh(3.141592653589793)=11.591953275521519