sin(3m)
NAME
sin, cos, tan, asin, acos, atan, atan2 − trigonometric functions and their inverses
SYNTAX
#include <math.h>
double sin(x)
double x;
float fsin(x)
float x;
double cos(x)
double x;
float fcos(x)
float x;
double tan(x)
double x;
float ftan(x)
float x;
double asin(x)
double x;
float fasin(x)
float x;
double acos(x)
double x;
float facos(x)
float x;
double atan(x)
double x;
float fatan(x)
float x;
double atan2(y,x)
double y,x;
float fatan2(y,x)
float y,x;
DESCRIPTION
The sin, cos, and tan functions return trigonometric functions of radian arguments x for double data types.
The fsin, fcos, and ftan functions return trignometric functionssame for float data types.
The asin and fasin functions return the arc sine in the range −π/2 to π/2 for double and float data types respectively.
The acos and facos functions return the arc cosine in the range 0 to π for double and float data types respectively.
The atan and fatan functions return the arc tangent in the range −π/2 to π/2 for double and float data types respectively.
The atan2 and fatan2 functions return the arctangent of y/x in the range −π to π, using the signs of both arguments to determine the quadrant of the return value for double and float data types respectively.
DIAGNOSTICS
If |x| > 1 then asin(x) and acos(x) will return the default quiet NaN.
NOTES
Atan2 defines atan2(0,0) = 0. The reasons for assigning a value to atan2(0,0) are these:
(1)Programs that test arguments to avoid computing atan2(0,0) must be indifferent to its value. Programs that require it to be invalid are vulnerable to diverse reactions to that invalidity on diverse computer systems.
(2)Atan2 is used mostly to convert from rectangular (x,y) to polar (r,θ) coordinates that must satisfy x = r∗cosθ and y = r∗sinθ. These equations are satisfied when (x=0,y=0) is mapped to (r=0,θ=0). In general, conversions to polar coordinates should be computed thus:
r := hypot(x,y); ... := √(x2+y2)
θ := atan2(y,x).
(3)The foregoing formulas need not be altered to cope in a reasonable way with signed zeros and infinities on a machine, such as MIPS machines, that conforms to IEEE 754; the versions of hypot and atan2 provided for such a machine are designed to handle all cases. That is why atan2(±0,−0) = ±π, for instance. In general the formulas above are equivalent to these:
r := √(x∗x+y∗y); if r = 0 then x := copysign(1,x);
if x > 0thenθ := 2∗atan(y/(r+x))
elseθ := 2∗atan((r−x)/y);
except if r is infinite then atan2 will yield an appropriate multiple of π/4 that would otherwise have to be obtained by taking limits.
ERROR (due to Roundoff etc.) for libm43.a only
Let P stand for the number stored in the computer in place of π = 3.14159 26535 89793 23846 26433 ... . Let "trig" stand for one of "sin", "cos" or "tan". Then the expression "trig(x)" in a program actually produces an approximation to trig(x∗π/P), and "atrig(x)" approximates (P/π)∗atrig(x). The approximations are close.
In the codes that run on MIPS machines, P differs from π by a fraction of an ulp; the difference matters only if the argument x is huge, and even then the difference is likely to be swamped by the uncertainty in x. Besides, every trigonometric identity that does not involve π explicitly is satisfied equally well regardless of whether P = π. For instance, sin2(x)+cos2(x) = 1 and sin(2x) = 2sin(x)cos(x) to within a few ulps no matter how big x may be. Therefore the difference between P and π is most unlikely to affect scientific and engineering computations.
SEE ALSO
Subroutines