Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.cosh()

La fonction Math.cosh() renvoie le cosinus hyperbolique d'un nombre, défini par :

Math.cosh(x)=ex+e-x2\mathtt{\operatorname{Math.cosh(x)}} = \frac{e^x + e^{-x}}{2}

(Voir la page sur e)

Syntaxe

Math.cosh(x)

Paramètres

x
Un nombre.

Valeur de retour

Le cosinus hyperbolique du nombre passé en argument.

Description

cosh() étant une méthode statique de Math, il faut utiliser Math.cosh() et non pas la méthode d'un objet Math créé sur mesure (Math n'est pas un constructeur).

Exemple

Utiliser Math.cosh()

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

Prothèse d'émulation (polyfill)

Cette fonction peut être émulée grâce à la fonction Math.exp() :

Math.cosh = Math.cosh || function(x) {
    return (Math.exp(x) + Math.exp(-x)) / 2;
}

On peut également utiliser un unique appel à exp() :

Math.cosh = Math.cosh || function(x) {
    var y = Math.exp(x);
    return (y + 1 / y) / 2;
}

Spécifications

Spécification État Commentaires
ECMAScript 2015 (6th Edition, ECMA-262)
La définition de 'Math.cosh' dans cette spécification.
Standard Définition initiale.
ECMAScript 2017 Draft (ECMA-262)
La définition de 'Math.cosh' dans cette spécification.
Projet  

Compatibilité des navigateurs

Fonctionnalité Chrome Firefox (Gecko) Internet Explorer Opera Safari
Support simple 38 25 (25) Pas de support 25 7.1
Fonctionnalité Android Chrome pour Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Support simple Pas de support Pas de support 25.0 (25) Pas de support Pas de support 8

Voir aussi

Étiquettes et contributeurs liés au document

 Contributeurs à cette page : SphinxKnight, teoli
 Dernière mise à jour par : SphinxKnight,