Returns the arc cosine of number, expressed in degrees.
The acos[] function is a function that returns the arc cosine of a number. The arc cosine, or inverse cosine, of a number is the angle (in degrees) whose cosine is equal to the given number. The input to the function should be a value between -1 and +1, and the output will be in the range of 0 to 180 (degrees). For example, acos[1] would return 0 and acos[0.5] would return 60.
acos[x]
#<result> = acos[0] (print,#<result>)
result: 90
#<result> = acos[1] (print,#<result>)
result: 0
#<result> = acos[0.5] (print,#<result>)
result: 60