java.lang.Math.cosh() 用于返回一个值的双曲余弦值。任何值 x 的双曲余弦都可以定义为 (ex+ e-x)/2,其中 e 是欧拉数。
用法
public static double cosh(double x)
参数
x = the number whose hyperbolic cosine is to be returned.
返回
It returns the hyperbolic cosine of x.
- 如果参数为正数或负数,此方法将返回双曲余弦值。
- 如果参数为零,则此方法将返回 1.0。
- 如果参数为 Infinity,则此方法将返回正无穷大。
- 如果参数为 NaN,则此方法将返回 NaN。
例子1
public class CoshExample1
{
public static void main(String[] args)
{
double a = 60.0;
System.out.println(Math.cosh(a));
}
}
输出:
5.710036949078421E25
例子2
public class CoshExample2
{
public static void main(String[] args)
{
double a = 0.0;
// Input zero, Output 1
System.out.println(Math.cosh(a));
}
}
输出:
1.0
例子3
public class CoshExample3
{
public static void main(String[] args)
{
double a = -1.0/0;
// Input negative infinity, Output positive infinity
System.out.println(Math.cosh(a));
}
}
输出:
Infinity
示例 4
public class CoshExample4
{
public static void main(String[] args)
{
double a = 0.0/0;
// Input NaN, Output NaN
System.out.println(Math.cosh(a));
}
}
输出:
NaN
相关用法
- Java Math.cos()用法及代码示例
- Java Math.copySign()用法及代码示例
- Java Math.ceil()用法及代码示例
- Java Math.cbrt()用法及代码示例
- Java Math.multiplyExact()用法及代码示例
- Java Math.rint()用法及代码示例
- Java Math.nextUp()用法及代码示例
- Java Math.tan()用法及代码示例
- Java Math.asin()用法及代码示例
- Java Math.atan()用法及代码示例
- Java Math.nextAfter()用法及代码示例
- Java Math.exp()用法及代码示例
- Java Math.tanh()用法及代码示例
- Java Math.toDegrees()用法及代码示例
- Java Math.getExponent()用法及代码示例
- Java Math.toIntExact()用法及代码示例
- Java Math.IEEEremainder()用法及代码示例
- Java Math.sqrt()用法及代码示例
- Java Math.incrementExact()用法及代码示例
- Java Math.min()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math.cosh() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。