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


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


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

用法

public static double sinh(double x)

參數

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

返回

It returns the hyperbolic sine of x.
  • 如果參數是正數或負數,此方法將返回雙曲正弦值。
  • 如果參數是 Infinity,則此方法將返回與參數相同符號的 Infinity。
  • 如果參數為 NaN,則此方法將返回 NaN。
  • 如果參數為零,則此方法將返回與參數相同符號的零。

例子1

public class SinhExample1
{
    public static void main(String[] args) 
    {
        double a = 30;
        System.out.println(Math.sinh(a));
    }
}

輸出:

5.343237290762231E12

例子2

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

輸出:

-Infinity

例子3

public class SinhExample3
{
    public static void main(String[] args) 
    {
        double a = Double.NaN;
        // Input NaN, Output NaN 
        System.out.println(Math.sinh(a));
    }
}

輸出:

NaN

示例 4

public class SinhExample4
{
    public static void main(String[] args) 
    {
        double a = -0.0;
        // Input negative Zero, Output negative zero
        System.out.println(Math.sinh(a));
    }
}

輸出:

-0.0






相關用法


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