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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。