arctan

Returns the inverse tangent of x. This will accept any number as, unlike tan(), arctan() asymptotes are on the y axis so it just means you'll never get returned a number greater than pi/2 or less than -pi/2.

NOTE: This function takes a value in radians, not degrees.

 

Syntax:

arctan(x);

ArgumentTypeDescription
xRealThe angle (in radians) to return the inverse tangent of.

 

Returns:

Real

 

Example:

val = arctan( 0 );

This will set val to 0.