atan2()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
x 軸の正方向と、原点から点 (y, x) へ向かう射線の間の角度を、ラジアン単位で計算します。
構文
atan2(
y,
x)
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | 説明 |
---|---|---|---|
y | real |
✔️ | Y 座標。 |
x | real |
✔️ | X 座標。 |
返品
正の x 軸と原点から点 (y, x) までの光線の間の角度をラジアンで返します。
例
次の使用例は、角度の測定値をラジアン単位で返します。
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)
出力
atan2_0 | atan2_1 | atan2_2 |
---|---|---|
0.785398163397448 | 3.14159265358979 | -1.5707963267949 |