Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. JavaScript
  3. JavaScript-Referenz
  4. Eingebaute Standardobjekte
  5. Math
  6. atanh()

Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten.Erfahre mehr über dieses Experiment.

View in EnglishAlways switch to English

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 ⁨Juli 2015⁩.

Die statische MethodeMath.atanh() gibt den inversen hyperbolischen Tangens einer Zahl zurück. Das heißt,

x(1,1),𝙼𝚊𝚝𝚑.𝚊𝚝𝚊𝚗𝚑(𝚡)=artanh(x)=das eindeutige y so dass tanh(y)=x=12ln(1+x1x)\begin{aligned}\forall x \in ({-1}, 1),\;\mathtt{\operatorname{Math.atanh}(x)}} &= \operatorname{artanh}(x) = \text{das eindeutige } y \text{ so dass } \tanh(y) = x \\&= \frac{1}{2}\,\ln\left(\frac{1+x}{1-x}\right)\end{aligned}

Probieren Sie es aus

console.log(Math.atanh(-1));// Expected output: -Infinityconsole.log(Math.atanh(0));// Expected output: 0console.log(Math.atanh(0.5));// Expected output: 0.549306144334055 (approximately)console.log(Math.atanh(1));// Expected output: Infinity

Syntax

js
Math.atanh(x)

Parameter

x

Eine Zahl zwischen -1 und 1, einschließlich.

Rückgabewert

Der inverse hyperbolische Tangens vonx. Wennx 1 ist, wirdInfinity zurückgegeben. Wennx -1 ist, wird-Infinity zurückgegeben. Wennx kleiner als -1 oder größer als 1 ist, wirdNaN zurückgegeben.

Beschreibung

Daatanh() eine statische Methode vonMath ist, verwenden Sie sie immer alsMath.atanh() und nicht als Methode eines von Ihnen erstelltenMath-Objekts (Math ist kein Konstruktor).

Beispiele

Verwendung von Math.atanh()

js
Math.atanh(-2); // NaNMath.atanh(-1); // -InfinityMath.atanh(-0); // -0Math.atanh(0); // 0Math.atanh(0.5); // 0.5493061443340548Math.atanh(1); // InfinityMath.atanh(2); // NaN

Spezifikationen

Specification
ECMAScript® 2026 Language Specification
# sec-math.atanh

Browser-Kompatibilität

Siehe auch

Help improve MDN

Learn how to contribute Diese Seite wurde automatisch aus dem Englischen übersetzt.

[8]ページ先頭

©2009-2025 Movatter.jp