命名空间
变体
操作

crealf, creal, creall

来自 cppreference.com
< c‎ | numeric‎ | complex
定义于头文件 <complex.h>
float       crealf( float complex z );
(1) (自 C99)
double      creal( double complex z );
(2) (自 C99)
long double creall( long double complex z );
(3) (自 C99)
定义于头文件 <tgmath.h>
#define creal( z )
(4) (自 C99)
1-3) 返回 z 的实部。
4) 类型通用宏:如果 z 的类型为 long double complex, long double imaginary, 或 long double, 则调用 creall。如果 z 的类型为 float complex, float imaginary, 或 float, 则调用 crealf。如果 z 的类型为 double complex, double imaginary, double, 或任何整型类型,则调用 creal

内容

[编辑] 参数

z - 复数参数

[编辑] 返回值

z 的实部。

此函数针对所有可能的输入都已完全指定,不受 math_errhandling 中描述的任何错误的影响。

[编辑] 注释

对于任何复数变量 zz == creal(z) + I*cimag(z).

[编辑] 示例

#include <stdio.h>
#include <complex.h>
 
int main(void)
{    
    double complex z = 1.0 + 2.0*I;
    printf("%f%+fi\n", creal(z), cimag(z));
}

输出

1.000000+2.000000i

[编辑] 参考资料

  • C11 标准 (ISO/IEC 9899:2011)
  • 7.3.9.6 The creal functions (p: 198-199)
  • 7.25 Type-generic math <tgmath.h> (p: 373-375)
  • G.7 Type-generic math <tgmath.h> (p: 545)
  • C99 标准 (ISO/IEC 9899:1999)
  • 7.3.9.5 The creal functions (p: 180)
  • 7.22 Type-generic math <tgmath.h> (p: 335-337)
  • G.7 Type-generic math <tgmath.h> (p: 480)

[编辑] 另请参阅

(C99)(C99)(C99)
计算复数的虚部
(函数) [编辑]
C++ 文档 for real