atan2()
S’applique à : ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Calcule l’angle (en radians) entre l’axe des abscisses positives et le rayon depuis l’origine au point (y, x).
Syntaxe
atan2(
y x,
)
En savoir plus sur les conventions de syntaxe.
Paramètres
Nom | Type | Requise | Description |
---|---|---|---|
y | real |
✔️ | Coordonnée Y. |
x | real |
✔️ | Coordonnée X. |
Retours
Retourne l’angle en radians entre l’axe x positif et le rayon de l’origine jusqu’au point (y, x).
Exemples
L’exemple suivant retourne les mesures d’angle en radians.
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)
Sortie
atan2_0 | atan2_1 | atan2_2 |
---|---|---|
0.785398163397448 | 3.14159265358979 | -1.5707963267949 |