Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
complex
/
cpow.c
blob: f863588fe7881dc9eeda32c620d2cc3cad889757 [
file
]
#include
"libm.h"
/* pow(z, c) = exp(c log(z)), See C99 G.6.4.1 */
double
complex cpow
(
double
complex z
,
double
complex c
)
{
return
cexp
(
c
*
clog
(
z
));
}