當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math.cosh()用法及代碼示例


java.lang.Math.cosh() 用於返回一個值的雙曲餘弦值。任何值 x 的雙曲餘弦都可以定義為 (ex+ e-x)/2,其中 e 是歐拉數。

用法

public static double cosh(double x)

參數

x = the number whose hyperbolic cosine is to be returned.

返回

It returns the hyperbolic cosine of x.
  • 如果參數為正數或負數,此方法將返回雙曲餘弦值。
  • 如果參數為零,則此方法將返回 1.0。
  • 如果參數為 Infinity,則此方法將返回正無窮大。
  • 如果參數為 NaN,則此方法將返回 NaN。

例子1

public class CoshExample1
{
    public static void main(String[] args) 
    {
        double a = 60.0;
        System.out.println(Math.cosh(a));
    }
}

輸出:

5.710036949078421E25

例子2

public class CoshExample2
{
    public static void main(String[] args) 
    {																		
        double a = 0.0;
        // Input zero, Output 1 								
        System.out.println(Math.cosh(a));									
    }
}

輸出:

1.0

例子3

public class CoshExample3
{
    public static void main(String[] args) 
    {
        double a = -1.0/0;
        // Input negative infinity, Output positive infinity 
        System.out.println(Math.cosh(a));
    }
}

輸出:

Infinity

示例 4

public class CoshExample4
{
    public static void main(String[] args) 
    {
        double a = 0.0/0;
        // Input NaN, Output NaN 
        System.out.println(Math.cosh(a));
    }
}

輸出:

NaN






相關用法


注:本文由純淨天空篩選整理自 Java Math.cosh() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。