Posts Tagged ‘cexp’

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

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

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
TOP