Posts Tagged ‘clog’

cexp, cexpf, cexpl – complex exponential function
USAGE
#include <complex.h>

double complex cexp(double complex z);
float complex cexpf(float complex z);
long double complex cexpl(long double complex z);

[...]

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

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

casin, casinf, casinl – complex arc sine
USAGE
#include <complex.h>

double complex casin(double complex z);
float complex casinf(float complex z);
long double complex casinl(long double complex z);

[...]

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

cacos, cacosf, cacosl – complex arc cosine
USAGE
#include <complex.h>

double complex cacos(double complex z);
float complex cacosf(float complex z);
long double complex cacosl(long double complex z);

[...]

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