--- title: Math.atanh() slug: Web/JavaScript/Referencia/Objectes_globals/Math/atanh translation_of: Web/JavaScript/Reference/Global_Objects/Math/atanh ---
La funció Math.atanh()
retorna l'arctangent hiperbòlica d'un nombre, és a dir
Math.atanh(x)
x
Com que que atanh
() és un mètode estàtic de Math, sempre s'utilitza com a Math.atanh
(), en comptes de com a mètode d'una instància de Math
(Math
no és un constructor).
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
Es retorna {{jsxref("NaN")}} per a valors més grans que 1 o més petits que -1.
Per a , tenim que , que podem emular amb la funció següent:
Math.atanh = Math.atanh || function(x) { return Math.log((1+x)/(1-x)) / 2; };
Especificació | Estat | Comentaris |
---|---|---|
{{SpecName('ES6', '#sec-math.atanh', 'Math.atanh')}} | {{Spec2('ES6')}} | Definició inicial. |
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | {{CompatChrome("38")}} | {{CompatGeckoDesktop("25")}} | {{CompatNo}} | {{CompatOpera("25")}} | {{CompatSafari("7.1")}} |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | {{CompatNo}} | {{CompatNo}} | {{CompatGeckoMobile("25")}} | {{CompatNo}} | {{CompatNo}} | 8 |