cpowf, cpow, cpowl
From cppreference.com
| Defined in header <complex.h>
|
||
| (1) | (since C99) | |
| (2) | (since C99) | |
| (3) | (since C99) | |
| Defined in header <tgmath.h>
|
||
| #define pow( x, y ) |
(4) | (since C99) |
1-3) Computes the complex power function xy
, with branch cut for the first parameter along the negative real axis.
, with branch cut for the first parameter along the negative real axis.
4) Type-generic macro: If any argument has type long double complex,
cpowl is called. if any argument has type double complex, cpow is called, if any argument has type float complex, cpowf is called. If the arguments are real or integer, then the macro invokes the corresponding real function (powf, pow, powl). If any argument is imaginary, the corresponding complex number version is called.Contents |