Posts Tagged ‘carg’

carg, cargf, cargl – calculate the argument
USAGE
#include <complex.h>

double carg(double complex z);
float cargf(float complex z);
long double cargl(long double complex z);

Link with [...]

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

complex – basics of complex mathematics
USAGE
#include <complex.h>

DESCRIPTION
Complex numbers are numbers of the form z = a+b*i, where a and b are
real numbers and i = sqrt(-1), so that i*i = -1.
[...]

Wednesday, August 26th, 2009 at 09:49 | 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