asin, asinf, asinl
From cppreference.com
Defined in header <math.h>
|
||
float asinf( float arg ); |
(1) | (since C99) |
double asin( double arg ); |
(2) | |
long double asinl( long double arg ); |
(3) | (since C99) |
Defined in header <tgmath.h>
|
||
#define asin( arg ) |
(4) | (since C99) |
1-3) Computes the principal values of the arc sine of
arg
.4) Type-generic macro: If the argument has type long double,
asinl
is called. Otherwise, if the argument has integer type or the type double, asin
is called. Otherwise, asinf
is called. If the argument is complex, then the macro invokes the corresponding complex function (casinf, casin, casinl).Parameters
arg | - | floating point value |
Return value
If no errors occur, the arc sine ofarg
(arcsin(arg)) in the range [-π |
2 |
π |
2 |
If a domain error occurs, an implementation-defined value is returned (NaN where supported).
If a range error occurs due to underflow, the correct result (after rounding) is returned.
Error handling
Errors are reported as specified in math_errhandling.
Domain error occurs if arg
is outside the range [-1.0; 1.0]
.
If the implementation supports IEEE floating-point arithmetic (IEC 60559),
- If the argument is ±0, it is returned unmodified
- If |arg| > 1, a domain error occurs and NaN is returned.
- if the argument is NaN, NaN is returned