atan2()
Gilt für: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Berechnet den Winkel (im Bogenmaß) zwischen der positiven X-Achse und dem Strahl vom Ursprung zum Punkt (y, x).
Syntax
atan2(
y,
x)
Erfahren Sie mehr über Syntaxkonventionen.
Parameter
Name | Type | Erforderlich | Beschreibung |
---|---|---|---|
y | real |
✔️ | Die Y-Koordinate. |
x | real |
✔️ | Die X-Koordinate. |
Gibt zurück
Gibt den Winkel in Bogenmaßen zwischen der positiven X-Achse und dem Strahl vom Ursprung zum Punkt (y, x) zurück.
Beispiele
Im folgenden Beispiel werden die Winkelmaße in Bogenmaßen zurückgegeben.
print atan2_0 = atan2(1,1) // Pi / 4 radians (45 degrees)
| extend atan2_1 = atan2(0,-1) // Pi radians (180 degrees)
| extend atan2_2 = atan2(-1,0) // - Pi / 2 radians (-90 degrees)
Output
atan2_0 | atan2_1 | atan2_2 |
---|---|---|
0.785398163397448 | 3.14159265358979 | -1.5707963267949 |