-

Changes

Jump to: navigation, search

Functions HI-TECH C ACOS

716 bytes added, 18:05, 31 July 2017
Created page with "<strong>ACOS, ASIN, ATAN, ATAN2</strong> == SYNOPSIS == #include <math.h> double acos(double f) double asin(double f) double atan(double f) double atan2..."
<strong>ACOS, ASIN, ATAN, ATAN2</strong>
== SYNOPSIS ==

#include <math.h>

double acos(double f)
double asin(double f)
double atan(double f)

double atan2(double x, double y)


== DESCRIPTION ==

These functions are the converse of the trignometric
functions cos, sin and tan. Acos and asin are undefined
for arguments whose absolute value is greater than 1.0.
The returned value is in radians, and always in the
range -pi/2 to +pi/2, except for <strong>cos</strong>(), which returns a
value in the range 0 to pi. <strong>Atan2</strong>() returns the
inverse tan of x/y but uses the signs of its arguments
to return a value in the range -pi to +pi.

== SEE ALSO ==

sin, cos, tan

Navigation menu