Posts Tagged ‘complex’

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

csqrt, csqrtf, csqrtl – complex square root
USAGE
#include <complex.h>

double complex csqrt(double complex z);
float complex csqrtf(float complex z);
long double complex csqrtl(long double complex z);

[...]

Thursday, August 27th, 2009 at 02:03 | 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

creal, crealf, creall – get real part of a complex number
USAGE
#include <complex.h>

double creal(double complex z);
float crealf(float complex z);
long double creall(long double complex z);

[...]

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

cproj, cprojf, cprojl – project into Riemann Sphere
USAGE
#include <complex.h>

double complex cproj(double complex z);
float complex cprojf(float complex z);
long double complex cprojl(long double complex z);

[...]

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

cpow, cpowf, cpowl – complex power function
USAGE
#include <complex.h>

double complex cpow(double complex x, complex double z);
float complex cpowf(float complex x, complex float z);
long double complex [...]

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

conj, conjf, conjl – calculate the complex conjugate
USAGE
#include <complex.h>

double complex conj(double complex z);
float complex conjf(float complex z);
long double complex conjl(long double complex z);

[...]

Thursday, August 27th, 2009 at 01:57 | Comments Off
Categories: c

cimag, cimagf, cimagl – get imaginary part of a complex number
USAGE
#include <complex.h>

double cimag(double complex z);
float cimagf(float complex z);
long double cimagl(long double complex z);

[...]

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

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

cexp2, cexp2f, cexp2l – base-2 exponent of a complex number
USAGE
#include <complex.h>

double complex cexp2(double complex z);
float complex cexp2f(float complex z);
long double complex cexp2l(long double complex z);

[...]

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