cpowf函数
概要:
#include <complex.h> float complex cpowf(float complex x, float complex y);
描述:
该函数计算的值,第一个参数沿负实轴区间进行分支切割(branch cut)。
参数:
float complex x
参数为一个float complex类型的复数。
float complex y
参数为一个float complex类型的复数。
返回值:
函数返回的值。
范例:
|
|
输出:
cpowf(1.0f + 1.0fi, 2.0f + 0.0fi) = -0.00+2.00i
相关内容:
cpow | double complex类型的复变幂函数。 |
cpowl | long double complex类型的复变幂函数。 |