Math.cosh()

Math.cosh() 静态方法返回数字的双曲余弦。那是,

¥The Math.cosh() static method returns the hyperbolic cosine of a number. That is,

𝙼𝚊𝚝𝚑.𝚌𝚘𝚜𝚑 ( 𝚡 ) = cosh ( x ) = e x + e x 2 \mathtt{\operatorname{Math.cosh}(x)} = \cosh(x) = \frac{\mathrm{e}^x + \mathrm{e}^{-x}}{2}

Try it

语法

¥Syntax

js
Math.cosh(x)

参数

¥Parameters

x

一个号码。

返回值

¥Return value

x 的双曲余弦。

¥The hyperbolic cosine of x.

描述

¥Description

因为 cosh()Math 的静态方法,所以你始终将其用作 Math.cosh(),而不是用作你创建的 Math 对象的方法(Math 不是构造函数)。

¥Because cosh() is a static method of Math, you always use it as Math.cosh(), rather than as a method of a Math object you created (Math is not a constructor).

示例

¥Examples

使用 Math.cosh()

¥Using Math.cosh()

js
Math.cosh(-Infinity); // Infinity
Math.cosh(-1); // 1.5430806348152437
Math.cosh(-0); // 1
Math.cosh(0); // 1
Math.cosh(1); // 1.5430806348152437
Math.cosh(Infinity); // Infinity

规范

Specification
ECMAScript Language Specification
# sec-math.cosh

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看