-
-
Notifications
You must be signed in to change notification settings - Fork 18
arctan
Vašek edited this page Jan 13, 2019
·
7 revisions
Returns the inverse tangent of value in radians
arctan(x)
Argument | Description |
---|---|
double x |
The angle in radians to inverse tangent |
Returns: double
This function returns the inverse tangent of x
in radians. If you want to return degrees instead of radians use function darctan()
.
double value;
value = arctan(-1);
This code will set value
to -0,785398.
double value;
value = arctan(52);
This code will set value
to 1,551568.
Back to number_functions