YesNoOk
avatar

Acos (math) (Triggers) (Read 4274 times)

Started by JustNoPoint, September 10, 2015, 03:31:22 pm
Share this topic:
Acos (math) (Triggers)
New #1  September 10, 2015, 03:31:22 pm
  • ******
    • www.justnopoint.com/
Computes the arccosine (in radians) of the specified argument.

Format:
acos(exprn)
Arguments:
exprn
Expression to compute the arccosine of (float).
Return type:
float
Error conditions:
Returns bottom if exprn evaluates to bottom, or if exprn is not in the domain of arccosine (which is [-1.0,1.0]).
Example:

Code:
value = acos(1)
  Sets value to the arccosine of 1, which is approximately 0.0
  (possibly with some rounding error.)
Last Edit: September 18, 2015, 02:56:18 pm by Just No Point