radians()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
radians = (PI / 180 ) * angle_in_degrees
の数式*を用いて、度単位の角度の値をラジアン*単位の値へと変換する*
構文
radians(
degrees)
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | 説明 |
---|---|---|---|
degrees | real |
✔️ | 角度を度単位で指定します。 |
返品
度単位で指定された角度に対応するラジアン*単位の角度。
例
print radians0 = radians(90), radians1 = radians(180), radians2 = radians(360)
出力
radians0 | radians1 | radians2 |
---|---|---|
1.5707963267949 | 3.14159265358979 | 6.28318530717959 |