Posts Tagged ‘asin’

cos, cosf, cosl – cosine function
USAGE
#include <math.h>

double cos(double x);
float cosf(float x);
long double cosl(long double x);

Link with -lm.

DESCRIPTION
[...]

Thursday, August 27th, 2009 at 02:00 | Comments Off
Categories: c
Tags: , , , , , , , ,

atan, atanf, atanl – arc tangent function
USAGE
#include <math.h>

double atan(double x);
float atanf(float x);
long double atanl( long double x);

Link with -lm.

DESCRIPTION
[...]

Wednesday, August 26th, 2009 at 02:06 | Comments Off
Categories: A

atan2, atan2f, atan2l – arc tangent function of two variables
USAGE
#include <math.h>

double atan2(double y, double x);
float atan2f(float y, float x);
long double atan2l(long double y, long double x);

[...]

Wednesday, August 26th, 2009 at 02:05 | Comments Off
Categories: A

asin, asinf, asinl – arc sine function
USAGE
#include <math.h>

double asin(double x);
float asinf(float x);
long double asinl(long double x);

Link with -lm.

DESCRIPTION
[...]

Wednesday, August 26th, 2009 at 02:03 | Comments Off
Categories: A

acos, acosf, acosl – arc cosine function
USAGE
#include <math.h>

double acos(double x);
float acosf(float x);
long double acosl(long double x);

Link with -lm.

DESCRIPTION
[...]

Wednesday, August 26th, 2009 at 01:37 | Comments Off
Categories: A

acos, acosf, acosl – arc cosine function
USAGE
#include <math.h>

double acos(double x);
float acosf(float x);
long double acosl(long double x);

Link with -lm.

DESCRIPTION
[...]

Wednesday, August 26th, 2009 at 01:34 | Comments Off
Categories: A

acos, acosf, acosl – arc cosine function
USAGE
#include <math.h>

double acos(double x);
float acosf(float x);
long double acosl(long double x);

Link with -lm.

DESCRIPTION
[...]

Wednesday, August 26th, 2009 at 01:33 | Comments Off
Categories: A
TOP