Skip to content

darctan

Vašek edited this page Jan 13, 2019 · 3 revisions

darctan

Returns the inverse tangent of value in degrees

Syntax:

darctan(x)
Argument Description
double x The angle in degrees to inverse tangent

Returns: double

Description:

This function returns the inverse tangent of x in degrees. If you want to return radians instead of degrees use function arctan().

Example:

double value;
value = darctan(-1);

This code will set value to -44,999999.

Example 2:

double value;
value = darctan(52);

This code will set value to 88,898294.

Back to number_functions

Clone this wiki locally