|
||
double asin( double x )
double x; /* double value */
|
|
Synopsis |
#include "math.h"
The asin function returns the value, in radians, of the arc sine, or sin-1 of x.
|
Parameters |
x must be in the range of [-1, 1].
|
Return Value |
asin returns a value in the range of [-π/2, π/2], if x is in the specified range; otherwise, asin returns 0.0, and sets errno (the system error variable) to EDOM.
|
See Also |
|
|