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