Computes the arc value of tangent.
#include <math.h> double atan(double x); float atanf(float x); long double atanl(long double x);
x
A floating-point value.
These functions return the arctangent of the argument x, in radians from -pi / 2 to pi / 2.
This facility may not be available on configurations of the EWL that run on platforms that do not have floating-point math capabilities.