Angle units
A bare number is interpreted as degrees. Attach an angle unit to be explicit:value— degrees (the default)value deg— degreesvalue rad— radians
(asin(0.5))rad. A unit on the argument of an inverse function is an error, since the argument is a dimensionless ratio.
Sine, cosine, and tangent [sin, cos, tan]
rad.
Secant, cosecant, and cotangent [sec, csc, cot]
rad.
Inverse functions [asin, acos, atan]
asin and acos take a dimensionless ratio between -1 and 1; atan takes any dimensionless ratio. All three return an angle in degrees.
Angles use the shared angle units — degrees unless you append rad.
Hyperbolic functions [sinh, cosh, tanh, asinh, acosh, atanh]
sinh(1) is the hyperbolic sine of one degree. Write sinh(1rad) for the value usually written as sinh(1). The inverses return degrees, so cast the result to read it in radians.
Because angle units are unambiguous,
sin(45 deg) and sin((pi/4) rad) refer to the same angle. See Units.
