radians()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
使用公式,將角度值以度為單位轉換成弧度中的值 radians = (PI / 180 ) * angle_in_degrees
語法
radians(
degrees)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
degrees | real |
✔️ | 以度為單位的角度。 |
傳回
以度為單位指定之角度的對應角度。
範例
print radians0 = radians(90), radians1 = radians(180), radians2 = radians(360)
輸出
radians0 | radians1 | radians2 |
---|---|---|
1.5707963267949 | 3.14159265358979 | 6.28318530717959 |