Go to the first, previous, next, last section, table of contents.


atan, atanf---arc tangent

Synopsis

#include <math.h>
double atan(double x);
float atanf(float x);

Description

atan computes the inverse tangent (arc tangent) of the input value.

atanf is identical to atan, save that it operates on floats.


Returns


Portability
atan is ANSI C. atanf is an extension.



Go to the first, previous, next, last section, table of contents.