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


Java Java.lang.StrictMath.cosh()用法及代码示例



描述

这个java.lang.StrictMath.cosh() 方法返回双精度值的双曲余弦值。 x 的双曲余弦定义为(ex + e-x)/2在哪里eEuler's number.它包括这些情况 -

  • 如果参数为NaN,则结果为NaN。
  • 如果参数是无穷大,那么结果是正无穷大。
  • 如果参数为零,则结果为 1.0。

声明

以下是声明java.lang.StrictMath.cosh()方法

public static double cosh(double x)

参数

x- 这是要返回其双曲余弦的数字。

返回值

此方法返回 x 的双曲余弦值。

异常

NA

示例

下面的例子展示了 java.lang.StrictMath.cosh() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = (60*(Math.PI))/180 , d2 = 0.0, d3 = (1.0/0.0) ;
   
      // returns the hyperbolic cosine of specified angle in radian
      double coshValue = StrictMath.cosh(d1); 
      System.out.println("Hyperbolic cosine of d1 = " + coshValue);

      coshValue = StrictMath.cosh(d2); 
      System.out.println("Hyperbolic cosine of d2 = " + coshValue);

      coshValue = StrictMath.cosh(d3); 
      System.out.println("Hyperbolic cosine of d3 = " + coshValue);
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

Hyperbolic cosine of d1 = 1.600286857702386
Hyperbolic cosine of d2 = 1.0
Hyperbolic cosine of d3 = Infinity

相关用法


注:本文由纯净天空筛选整理自 Java.lang.StrictMath.cosh() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。