Math.atanh()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
La fonction Math.atanh()
renvoie l'arc tangente hyperbolique d'un nombre :
Exemple interactif
Syntaxe
Math.atanh(x);
Paramètres
x
-
Un nombre.
Valeur de retour
L'arc tangente hyperbolique du nombre passé en argument.
Description
atanh()
est une méthode statique de Math
, il faut utiliser la syntaxe Math.atanh()
, et non pas une méthode d'un objet Math
créé sur mesure (Math
n'est pas un constructeur).
Exemple
Utiliser Math.atanh()
Math.atanh(-2); // NaN
Math.atanh(-1); // -Infinity
Math.atanh(0); // 0
Math.atanh(0.5); // 0.5493061443340548
Math.atanh(1); // Infinity
Math.atanh(2); // NaN
Pour les valeurs strictement inférieures à -1 ou strictement supérieures à 1, NaN
sera renvoyé.
Prothèse d'émulation (polyfill)
Pour , on a la formule suivante : et on peut donc émuler la fonction avec :
Math.atanh =
Math.atanh ||
function (x) {
return Math.log((1 + x) / (1 - x)) / 2;
};
Spécifications
Specification |
---|
ECMAScript Language Specification # sec-math.atanh |
Compatibilité des navigateurs
BCD tables only load in the browser