asin [function]
asin( x )
returns the arcsine of x (angle in radians), as real
- If
xis outside the [-1,1] range, function returnsnulland emits a warning message
asin( -1 ); // real (-1.5708) asin( 0 ); // real (0) asin( 2 ); // null; Warning: asin(): mathematical error
