©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
在头文件<math.h>中定义 | ||
---|---|---|
float cimagf( float complex z ); | (1) | (since C99) |
double cimag( double complex z ); | (2) | (since C99) |
long double cimagl( long double complex z ); | (3) | (since C99) |
Defined in header <tgmath.h> | ||
#define cimag( z ) | (4) | (since C99) |
1-3)返回的虚部z
。
4)式泛型宏:如果z
具有类型long
double
complex
,long
double
imaginary
或long double
,cimagl
被调用。如果z
有类型float
complex
,float
imaginary
或者float
,cimagf
被调用。如果z
有类型double
complex
,double
imaginary
,double
,或任何整数类型,cimag
被调用。
z | - | 复杂的论点 |
---|
虚构的部分z
。
该函数完全为所有可能的输入指定,并且不受math_errhandling中描述的任何错误的影响。
对于任何复杂的变量z
,z ==
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 cimag函数(p:197)
7.25类型通用数学<tgmath.h>(p:373-375)
G.7类型 - 通用数学<tgmath.h>(p:545)
C99标准(ISO / IEC 9899:1999):
7.3.9.2 cimag函数(p:178-179)
7.22类型通用数学<tgmath.h>(p:335-337)
G.7类型 - 通用数学<tgmath.h>(p:480)