Returns the arc sine of number, expressed in degrees.
The asin[] function is a function that returns the arc sine of a number. The arc sine, or inverse sine, of a number is the angle (in degrees) whose sine 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 -90 to 90 (degrees). For example, asin[1] would return 90 and asin[0] would return 0.
asin[x]
#<result> = asin[1] (print,#<result>)
result: 90
#<result> = asin[0] (print,#<result>)
result: 0