Posts Tagged ‘ccos’

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

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: , , , , , , , ,

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

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