Math.cosh()
Math.cosh() 函数返回数值的双曲余弦函数,可用 constant e 表示:
Syntax
Math.cosh(x)
参数
x-
数值。
描述
由于cosh() 是 Math 的静态函数,只需通过Math.cosh() 调用,而不用通过创建 Math 对象来调用。
示例
使用 Math.cosh()
js
Math.cosh(0); // 1
Math.cosh(1); // 1.5430806348152437
Math.cosh(-1); // 1.5430806348152437
Polyfill
可通过 Math.exp() 函数模拟实现:
js
Math.cosh = Math.cosh || function(x) {
return (Math.exp(x) + Math.exp(-x)) / 2;
}
或只调用一次 Math.exp() 函数:
js
Math.cosh = Math.cosh || function(x) {
var y = Math.exp(x);
return (y + 1 / y) / 2;
};
规范
| Specification |
|---|
| ECMAScript Language Specification # sec-math.cosh |
浏览器兼容性
BCD tables only load in the browser
相关链接
Math.acosh()实验性Math.asinh()实验性Math.atanh()实验性Math.sinh()实验性Math.tanh()实验性