Usage of tan():
double tan(double x);
Parameters:
There is no range limit on the argument.
Return value:
There is no range limit on the return value.
Source code example of tan():
More »
Posted in C Reference math.h Functions |
Usage of tanh():
double tanh(double x);
Parameters:
The value of x has no range.
Return value:
The returned value is in the range of -1 to +1 (inclusive.)
Source code example of tanh():
More »
Posted in C Reference math.h Functions |
Usage of sin():
double sin(double x);
Parameters:
The value of x has no range.
Return value:
The returned value is in the range of -1 to +1 (inclusive).
Source code example of sin():
More »
Posted in C Reference math.h Functions |
Usage of sinh():
double sinh(double x);
Parameters:
There is no range limit on the argument.
Return value:
There is no range limit on the return value.
Source code example of sinh():
More »
Posted in C Reference math.h Functions |
Usage of cosh():
double cosh(double x);
Parameters:
There is no range limit on the argument.
Return value:
There is no range limit return value. More »
Posted in C Reference math.h Functions |
Usage of cos():
double cos(double x);
Parameters:
The value of x has no range.
Return value:
The returned value is in the range of -1 to +1 (inclusive).
Source code example of cos():
More »
Posted in C Reference math.h Functions |
Usage of atan2():
double atan2(double y, double x);
Parameters:
Both y and x cannot be zero.
Return value:
Arc tangent in radians of y/x based on the signs of both values
to determine the correct quadrant. The returned value is in the range of -p/2 to +p/2 (inclusive).
Source code example of atan2():
More »
Posted in C Reference math.h Functions |
Usage of atan():
double atan(double x);
Parameters:
The value of x has no range.
Return value:
The returned value is in the range of -p/2 to +p/2 (inclusive).
Source code example of atan():
More »
Posted in C Reference math.h Functions |
Usage of asin():
double asin(double x);
Parameters:
The value of x must be within the range of -1 to +1 (inclusive).
Return value:
The returned value is in the range of -p/2 to +p/2 (inclusive).
Source code example of asin():
More »
Posted in C Reference math.h Functions |
Usage of acos():
double acos(double x);
Parameters:
The value x must be within the range of -1 to +1 (inclusive).
Return value:
The returned value is in the range of 0 to pi (inclusive).
Source code example of acos():
More »
Posted in C Reference math.h Functions |