arcsin

Compute arcsine of the given argument

arcsin(x);

will return the arcsine of an argument, returned in degress in radians. There is no custom return type, the function always returns an double.

arcsin(0); // 0°
arcsin(0.5); //PI/6 or 30°
arcsin(0.7854); //PI/4 or 45°
arcsin(1.0472); //PI/3 or 60°
arcsin(1); // PI/2 or 90° 

Last updated