当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。