degrees()
Learn how to use the degrees() function to convert angle values from radians to values in degrees.
Converts angle value in radians into value in degrees, using the formula degrees = (180 / PI ) * angle_in_radians
.
Syntax
degrees(
radians)
Parameters
Name | Type | Required | Description |
---|---|---|---|
radians | real | ✔️ | The angle in radians to convert to degrees. |
Returns
The corresponding angle in degrees for an angle specified in radians.
Examples
print degrees0 = degrees(pi()/4), degrees1 = degrees(pi()*1.5), degrees2 = degrees(0)
Output
degrees0 | degrees1 | degrees2 |
---|---|---|
45 | 270 | 0 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.