Posts Tagged ‘csin’

ctan, ctanf, ctanl – complex tangent function
USAGE
#include <complex.h>

double complex ctan(double complex z);
float complex ctanf(float complex z);
long double complex ctanl(long double complex z);

[...]

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

csin, csinf, csinl – complex sine function
USAGE
#include <complex.h>

double complex csin(double complex z);
float complex csinf(float complex z);
long double complex csinl(long double complex z);

[...]

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

ccos, ccosf, ccosl – complex cosine function
USAGE
#include <complex.h>

double complex ccos(double complex z);
float complex ccosf(float complex z);
long double complex ccosl(long double complex z);

[...]

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