Posts Tagged ‘pow’

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

cbrt, cbrtf, cbrtl – cube root function
USAGE
#include <math.h>

double cbrt(double x);
float cbrtf(float x);
long double cbrtl(long double x);

Link with -lm.

DESCRIPTION
[...]

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