Computes the power of a base number.
#include <math.h> double complex cpow(double complex x, double complex y); float complex cpowf(float complex x, float complex y); long double complex cpowl(long double complex x, long double complex y);
x
A complex value to use as base.
y
A complex value to use as exponent.
These functions computes xy.
These functions assign EDOM to errno if they cannot compute a value. Use fpclassify() to check the validity of the results returned by these functions.
This facility may not be available on configurations of the EWL that run on platforms that do not have floating-point math capabilities.