Function Repository Resource:

CosDegree

Source Notebook

Compute the cosine of an angle given in degrees

Contributed by: Paco Jain (Wolfram Research)

ResourceFunction["CosDegree"][x]

computes the cosine of an angle x, measured in degrees.

Details and Options

Mathematical function, suitable for both symbolic and numerical manipulation.
For certain special arguments, ResourceFunction["CosDegree"] automatically evaluates to exact values.
ResourceFunction["CosDegree"] can be evaluated to arbitrary numerical precision.
ResourceFunction["CosDegree"] automatically threads over lists.

Examples

Basic Examples (2) 

Compute the cosine of an angle:

In[1]:=
ResourceFunction["CosDegree"][60]
Out[1]=

Plot over a given range of angles:

In[2]:=
Plot[ResourceFunction["CosDegree"][x], {x, 0, 360}]
Out[2]=

Scope (2) 

Evaluate numerically:

In[3]:=
ResourceFunction["CosDegree"][43.1]
Out[3]=

Evaluate to high precision:

In[4]:=
N[ResourceFunction["CosDegree"][26], 50]
Out[4]=

Applications (1) 

Draw a circle:

In[5]:=
ParametricPlot[{ResourceFunction["CosDegree"][t], Sin[t Degree]}, {t, 0, 360}]
Out[5]=

Requirements

Wolfram Language 11.3 (March 2018) or above

Version History

  • 1.0.0 – 07 November 2018

Related Resources

License Information