当前位置: C语言 -- 标准库 -- <complex.h> -- cpowl

cpowl函数


概要:
#include <complex.h>
long double complex cpowl(long double complex x, long double complex y);

描述:

该函数计算xy的值,第一个参数沿负实轴区间进行分支切割(branch cut)。


参数:
long double complex x

参数为一个long double complex类型的复数。

long double complex y

参数为一个long double complex类型的复数。


返回值:

函数返回xy的值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
/*函数cpowl范例*/

#ifdef __STDC_NO_COMPLEX__
#error "Implementation does not support complex types."
#endif

#include <complex.h>
#include <stdio.h>

int main(void)
{
    long double complex x = 1.0L + 1.0LI;
    long double complex y = 2.0L + 0.0LI;
    long double complex z;
    char *ptr = "cpowl(1.0L + 1.0Li, 2.0L + 0.0Li)";

    z = cpowl(x, y);
    printf("%s = %.2Lf%+.2Lfi\n", ptr, creall(z),cimagl(z));

    return 0;
}

输出:

cpowl(1.0L + 1.0Li, 2.0L + 0.0Li) = -0.00+2.00i


相关内容:
cpow double complex类型的复变幂函数。
cpowf float complex类型的复变幂函数。