Asin

asin

Description:
Function asin calculates arksinus from the specified value.


Parameters:
(Float:value)
float value The value from which to find arksinus.


Return Values:
The arcsine of the value, in degrees


Examples:
main()
{
	// asin(1) = (pi / 2) = 90°
	new Float: result = asin(1.0);
	printf("%.4f", result); Output: 89.9999
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.
  • acos: Calculates the arccosine from the specified value.
  • atan: Calculates the arctangent of the specified value.
  • atan2: Calculates the arctangent from the coordinates of a point.
  • floatsin: Calculates the sine of an angle.
  • floatcos: Calculates the cosine of the angle.
  • floattan: Calculates the tangent of an angle.