命名空间
变体
操作

cargf, carg, cargl

来自 cppreference.cn
< c‎ | 数值‎ | 复数
定义在头文件 <complex.h>
float       cargf( float complex z );
(1) (C99 起)
double      carg( double complex z );
(2) (C99 起)
long double cargl( long double complex z );
(3) (C99 起)
定义于头文件 <tgmath.h>
#define carg( z )
(4) (C99 起)
1-3) 计算 z 的辐角(也称为相角),其分支切口沿负实轴。
4) 泛型宏:如果 z 的类型是 long double complexlong double imaginarylong double,则调用 cargl。如果 z 的类型是 float complexfloat imaginaryfloat,则调用 cargf。如果 z 的类型是 double complexdouble imaginarydouble 或任何整数类型,则调用 carg

目录

[编辑] 参数

z - 复数参数

[编辑] 返回值

如果未发生错误,则返回 z 的相角,范围为 [−π; π]

错误和特殊情况的处理方式如同函数实现为 atan2(cimag(z), creal(z))

[编辑] 示例

#include <stdio.h>
#include <complex.h>
 
int main(void) 
{
    double complex z1 = 1.0+0.0*I;
    printf("phase angle of %.1f%+.1fi is %f\n", creal(z1), cimag(z1), carg(z1));
 
    double complex z2 = 0.0+1.0*I;
    printf("phase angle of %.1f%+.1fi is %f\n", creal(z2), cimag(z2), carg(z2));
 
    double complex z3 = -1.0+0.0*I;
    printf("phase angle of %.1f%+.1fi is %f\n", creal(z3), cimag(z3), carg(z3));
 
    double complex z4 = conj(z3); // or CMPLX(-1, -0.0)
    printf("phase angle of %.1f%+.1fi (the other side of the cut) is %f\n",
             creal(z4), cimag(z4), carg(z4));
}

输出

phase angle of 1.0+0.0i is 0.000000
phase angle of 0.0+1.0i is 1.570796
phase angle of -1.0+0.0i is 3.141593
phase angle of -1.0-0.0i (the other side of the cut) is -3.141593

[编辑] 参考资料

  • C11 标准 (ISO/IEC 9899:2011)
  • 7.3.9.1 carg 函数 (p: 196)
  • 7.25 类型通用数学 <tgmath.h> (p: 373-375)
  • G.7 类型通用数学 <tgmath.h> (p: 545)
  • C99 标准 (ISO/IEC 9899:1999)
  • 7.3.9.1 carg 函数 (p: 178)
  • 7.22 类型通用数学 <tgmath.h> (p: 335-337)
  • G.7 类型通用数学 <tgmath.h> (p: 480)

[编辑] 另请参阅

(C99 起)(C99 起)(C99 起)
计算复数的模
(函数) [编辑]
(C99 起)(C99 起)
计算反正切,使用符号确定象限
(函数) [编辑]
C++ 文档,关于 arg