Function acos() calculates the radian of a cosine value.
Arguments:
Returns:
Example: Calculate the radian of cosine value 0.5
UQLreturn acos(0.5) * 180 / pi()
Result60
Example: Calculate the radian of each row (cosine value) of an alias
UQLuncollect [1, -0.5, 0] as a return acos(a)
Result0 2.0943951023932 1.5707963267949