Java StrictMath cosh()方法
java.lang.StrictMath.cosh() 方法返回double值的双曲余弦值。 x的双曲余弦定义为 (ex + e-x)/2 其中e是欧拉数。它包括以下情况:
- 如果参数为NaN,那么结果为NaN。
- 如果参数为无穷大,那么结果为正无穷大。
- 如果参数是零,那么结果是1.0。
1 语法
public static double cosh(double x)
2 参数
x : 这是要返回双曲余弦数。
3 返回值
此方法返回x的双曲余弦值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath cosh()方法
*/
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
热门文章
优秀文章