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


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


java.lang.Math.sinh()返回作為參數傳遞給它的double值的雙曲正弦值。任何值a的雙曲正弦定義為

(ea-e-a)/2

其中e是歐拉數。


如果參數為NaN,則結果為NaN。如果參數是無窮大,那麽結果也將是無窮大,其符號與參數相同。如果自變量為零,則結果為零,其符號與自變量相同。

用法:

public static double sinh(double a)
Parameter:
a:the value whose hyperbolic sine is to be returned.

返回:
此方法返回參數的雙曲正弦值。

範例1:展示java.lang.Math.sinh()方法的用法。

// Java program to demonstrate working 
// of java.lang.Math.sinh() method 
import java.lang.Math; 
  
class Gfg { 
  
    // driver code 
    public static void main(String args[]) 
    { 
  
        double a = 3.5; 
  
        System.out.println(Math.sinh(a)); 
  
        a = 90.328; 
  
        System.out.println(Math.sinh(a)); 
    } 
}
輸出:
16.542627287634996
8.470751974588509E38

範例2:當參數為NaN或無窮大時,顯示java.lang.Math.sinh()方法的用法。

// Java program to demonstrate working 
// of java.lang.Math.sinh() method infinity case 
import java.lang.Math; 
  
public class GFG { 
      
    // Driver code 
    public static void main(String[] args) 
    { 
  
        double positiveInfinity =  
               Double.POSITIVE_INFINITY; 
        double negativeInfinity =  
               Double.NEGATIVE_INFINITY; 
        double nan = Double.NaN; 
        double result; 
  
        // Here argument is negative infinity, 
        // output will be negative infinity 
        result = Math.sinh(negativeInfinity); 
        System.out.println(result); 
  
        // Here argument is positive infinity, 
        // output will also be positive infinity 
        result = Math.sinh(positiveInfinity); 
        System.out.println(result); 
  
        // Here argument is NaN, output will be NaN 
        result = Math.sinh(nan); 
        System.out.println(result); 
    } 
}
輸出:
-Infinity
Infinity
NaN


相關用法


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