September 2002
Intermediate to advanced
1024 pages
30h 52m
English
ATAN2
The ATAN2 function returns the inverse tangent of n/m. The specification for the ATAN2 function is:
FUNCTION ATAN (nNUMBER,mNUMBER) RETURN NUMBER;
where the numbers n and m
must be between -infinity and infinity, and the value returned by
ATAN is between -π and π. The result of
ATAN2(n,m) is defined to be identical to
ATAN(n/m).
Read now
Unlock full access