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

creal函数


概要:
#include <complex.h>
double creal(double complex z);

描述:

该函数计算参数z的实部值。


参数:
double complex z

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


返回值:

函数返回参数z的实部值。


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

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

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

int main(void)
{
    double complex x = 1.0 + 2.0I;
    double y;
    char *ptr = "creal(1.0 + 2.0i)";

    y = creal(x);
    printf("%s = %.2f\n", ptr, y);

    return 0;
}

输出:

creal(1.0 + 2.0i) = 1.00


相关内容:
crealf 计算float complex类型复数实部值的函数。
creall 计算long double complex类型复数实部值的函数。