Calculates the arcsine.
Asin(x)
(f) x: floating point number whose arcsine is desired.
(f) the Asin function returns the arcsine result of x.
The Asin function returns the arcsine of x in the range -p/2 to p/2 radians. The value of x must be between -1 and 1 otherwise a domain error will occur.
real=AskLine("ArcSin", "Enter a real number between -1 and 1", "0.5", 0) answer=Asin(real) Message("Arcsin of %real% is", answer)