C 参考手册
- C 语言
- C 关键词
- 预处理器
- C 标准库头文件
- 类型支持
- 程序支持工具
- 变参数函数
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 算法
- 数值
- 常用数学函数
- 浮点环境
- 伪随机数生成
- 复数算术
- complex
- imaginary
- _Complex_I
- CMPLXF, CMPLX, CMPLXL
- _Imaginary_I
- I
- cimagf, cimag, cimagl
- crealf, creal, creall
- cargf, carg, cargl
- cabsf, cabs, cabsl
- conjf, conj, conjl
- cprojf, cproj, cprojl
- cexpf, cexp, cexpl
- clogf, clog, clogl
- cpowf, cpow, cpowl
- csqrtf, csqrt, csqrtl
- ccosf, ccos, ccosl
- csinf, csin, csinl
- ctanf, ctan, ctanl
- cacosf, cacos, cacosl
- casinf, casin, casinl
- catanf, catan, catanl
- ccoshf, ccosh, ccoshl
- csinhf, csinh, csinhl
- ctanhf, ctanh, ctanhl
- cacoshf, cacosh, cacoshl
- casinhf, casinh, casinhl
- catanhf, catanh, catanhl
- 泛型数学
- 文件输入/输出
- 本地化支持
- 原子操作库
- 线程支持库
- 实验性 C 标准库
- 有用的资源
- 符号索引
- 注释
conjf, conj, conjl
定义于头文件 <complex.h>
|
||
(1) | (C99 起) | |
(2) | (C99 起) | |
(3) | (C99 起) | |
定义于头文件 <tgmath.h>
|
||
#define conj( z ) |
(4) | (C99 起) |
4) 泛型宏:若
z
拥有 long double complex 、 long double imaginary 或 long double 类型,则调用 conjl
。若 z
拥有 float complex 、 float imaginary 或 float 类型,则调用 conjf
。若 z
拥有 double complex 、 double imaginary 、 double 或任何整数类型,则调用 conj
。参数
z | - | 复参数 |
返回值
z
的共轭复数。
注意
在不实现 I 为 _Imaginary_I 的 C99 实现上,可用 conj
获得拥有负零虚部的复数。 C11 中,宏 CMPLX 用于此目的。
示例
运行此代码
输出:
The conjugate of 1.0+2.0i is 1.0-2.0i Their product is 5.0+0.0i
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.3.9.4 The conj functions (p: 198)
- 7.25 Type-generic math <tgmath.h> (p: 373-375)
- G.7 Type-generic math <tgmath.h> (p: 545)
- C99 standard (ISO/IEC 9899:1999):
- 7.3.9.3 The conj functions (p: 179)
- 7.22 Type-generic math <tgmath.h> (p: 335-337)
- G.7 Type-generic math <tgmath.h> (p: 480)