Mengubah derajat menjadi radian
=RADIANS(angle)
| Parameter | Deskripsi |
|---|---|
angle |
Angle in degrees to convert to radians. |
The RADIANS function takes an angle in degrees and converts it to radians. Radians measure angles using the radius of a circle. For example, to conver
=RADIANS(45) // Returns 0.785 or π/4
One radian is equal to the amount of rotation required to travel one radius along the circumference of the circle, as seen in the image above. A full-
= RADIANS(360) =2*PI() // A full rotation is 6.283...
= RADIANS(180) =PI() // A half rotation is 3.141...