Posts Tagged ‘catan’

catan, catanf, catanl – complex arc tangents
USAGE
#include <complex.h>

double complex catan(double complex z);
float complex catanf(float complex z);
long double complex catanl(long double complex z);

[...]

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

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
TOP