asin()
Purpose
Returns the arc sine of the supplied argument.
Description
This is the inverse of the SIN function, for returning the angle from a given sine.
Syntax
angle = asin( sine )
Arguments
sine The ratio of the side opposite to an acute angle in a right-angled triangle to the hypotenuse.
angle The acute angle in a right-angled triangle for the given sine
Example
sine = 0.5
angle = asin( sine )
print( "Angle = ", angle )
update()
sleep( 3 )
Associated Commands
acos(), atan(), atan2(), pi(), radians(), sin(), sinCos(), tan()