命名空间
变体
操作

cimagf、cimag、cimagl

来自 cppreference.com
< c‎ | numeric‎ | complex
在头文件 <complex.h> 中定义
float       cimagf( float complex z );
(1) (自 C99)
double      cimag( double complex z );
(2) (自 C99)
long double cimagl( long double complex z );
(3) (自 C99)
在头文件 <tgmath.h> 中定义
#define cimag( z )
(4) (自 C99)
1-3) 返回 z 的虚部。
4) 类型泛型宏:如果 z 的类型为 long double complexlong double imaginarylong double,则调用 cimagl。如果 z 的类型为 float complexfloat imaginaryfloat,则调用 cimagf。如果 z 的类型为 double complexdouble imaginarydouble 或任何整型,则调用 cimag

内容

[编辑] 参数

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.2 The cimag functions (p: 197)
  • 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.2 The cimag functions (p: 178-179)
  • 7.22 Type-generic math <tgmath.h> (p: 335-337)
  • G.7 Type-generic math <tgmath.h> (p: 480)

[编辑] 参见

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