atan2

Returns a value in the range - to . The returned value is the arc tangent of y/x, where y and x are the two arguments.

Format

#include  <math.h>

double atan2  (double y, double x);

Arguments

y
A real value.
x
A real value.


Previous Page | Next Page | Table of Contents | Index