Function asin() calculates the radian of a sine value.
Arguments:
Returns:
Example: Calculate the radian of sine value 0.5
UQLreturn asin(0.5) * 180 / pi()
Result30
Example: Calculate the radian of each row (sine value) of an alias
UQLuncollect [1, -0.5, 0] as a return asin(a)
Result1.5707963267949 -0.523598775598299 0