==== A→∡° ====
----
Convert an angle to degrees
----
^ __Input Stack__ ^ ^ __Output Stack__ ^
| **Num** | **→** | **∡deg** |
| **Z** | **→** | **Zdeg** |
| **∡** | **→** | **∡deg** |
| **V** | **→** | **Vdeg** |
| //Level 1// | //→// | //Level 1// |
{{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}}
| **Keyword type** | [[manual:chapter5:basics#commands|Command]] ||
| **Parallel list processing capabilities** | [[manual:chapter5:listproc#group-5one-argument-one-result-commands|Group 5]] | //One argument, one result commands// |
| **Affected by flags** | [[manual:appendix:flags#flags-17-18|-17]] | //Default angle unit (bit 0)// |
| ::: | [[manual:appendix:flags#flags-17-18|-18]] | //Default angle unit (bit 1)// |
----
The ''A→∡°'' command turns a scalar or a suitable component of a composite object into an angle measured in degrees.
In particular, if the component is:
* a **scalar**, then the number is interpreted as an angle //in the current angular mode// and converted to degrees;
* a **polar complex number**, then the angular component is converted to degrees;
* an **angle**, then the angle is converted to degrees;
* a **vector**, then any angle or polar complex number //but not scalars// is converted to degrees as per above rules.
----
''A→∡°'' is specific to **newRPL** and has no direct equivalent in **userRPL**.
----
**__Input__**
4:
3:
2:
1: [ #2h ∡20g (1,2) (3,∡5.3d) ]
…………………………………………………………………………………………………………
A→∡°
\\
**__Output__**
4:
3:
2:
1: [ ∡2° ∡18° (1,2) (3,∡5.5°) ]
…………………………………………………………………………………………………………
----
{{page>manual:chapter6:angles&nofooter&noeditbtn&inline}}