|
|
The trigonometric functions shown below are computed (with one exception) for the variable
x. Both the function and the argument are double-precision
real variables. The function
acos(x) is the arccosine of the argument
x, cos
. The function
atan2(x,y) is the arctangent of
x/y, tan
. The function
cosh(x) is the hyperbolic cosine function, etc.
| double acos (double x); | returns the arccosine of
|
| double asin (double x); | returns the arcsine of
|
| double atan (double x); | returns the arctangent of
|
| double atan2 (double x, double y); | returns the arctangent of
|
| double cos (double x); | returns the cosine of
|
| double sin (double x); | returns the sine of
|
| double tan (double x); | returns the tangent of x |
| double cosh (double x); | returns the hyperbolic cosine of
|
| double sinh (double x); | returns the hyperbolic sine of
|
| double tanh (double x); | returns the hyperbolic tangent of
|