Math.atan()

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.

Die statische Methode Math.atan() gibt den Arkustangens (in Radiant) einer Zahl zurück, das heißt

𝙼𝚊𝚝𝚑.𝚊𝚝𝚊𝚗 ( 𝚡 ) = arctan ( x ) = die eindeutige  y [ π 2 , π 2 ]  so dass  tan ( y ) = x \mathtt{\operatorname{Math.atan}(x)}} = \arctan(x) = \text{die eindeutige } y \in \left[-\frac{\pi}{2}, \frac{\pi}{2}\right] \text{ so dass } \tan(y) = x

Probieren Sie es aus

Syntax

js
Math.atan(x)

Parameter

x

Eine Zahl.

Rückgabewert

Der Arkustangens (Winkel in Radiant zwischen - π 2 -\frac{\pi}{2} und π 2 \frac{\pi}{2} , einschließlich) von x. Wenn x Infinity ist, gibt es π 2 \frac{\pi}{2} zurück. Wenn x -Infinity ist, gibt es - π 2 -\frac{\pi}{2} zurück.

Beschreibung

Da atan() eine statische Methode von Math ist, verwenden Sie sie immer als Math.atan(), anstatt als Methode eines von Ihnen erstellten Math-Objekts (Math ist kein Konstruktor).

Beispiele

Verwendung von Math.atan()

js
Math.atan(-Infinity); // -1.5707963267948966 (-π/2)
Math.atan(-0); // -0
Math.atan(0); // 0
Math.atan(1); // 0.7853981633974483  (π/4)
Math.atan(Infinity); // 1.5707963267948966  (π/2)

// The angle that the line (0,0) -- (x,y) forms with the x-axis in a Cartesian coordinate system
const theta = (x, y) => Math.atan(y / x);

Beachten Sie, dass Sie möglicherweise die theta-Funktion vermeiden und stattdessen Math.atan2() verwenden möchten, die einen größeren Bereich (zwischen -π und π) hat und die Ausgabe von NaN für Fälle wie wenn x 0 ist, vermeidet.

Spezifikationen

Specification
ECMAScript Language Specification
# sec-math.atan

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch