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 标准库
- 有用的资源
- 符号索引
- 注释
ccosf, ccos, ccosl
定义于头文件 <complex.h>
|
||
(1) | (C99 起) | |
(2) | (C99 起) | |
(3) | (C99 起) | |
定义于头文件 <tgmath.h>
|
||
#define cos( z ) |
(4) | (C99 起) |
1-3) 计算
z
的复余弦。4) 泛型宏:若
z
拥有 long double complex 类型,则调用 ccosl
,若 z
拥有 double complex 类型,则调用 ccos
,若 z
拥有 float complex 类型,则调用 ccosf
。若 z
为实数或整数,则此宏调用对应的实函数( cosf 、 cos 、 cosl )。若 z
是虚数,则此宏调用对应版本的 cosh 函数,实现公式 cos(iy) = cosh(y) ,而返回类型是实数。参数
z | - | 复参数 |
返回值
若无错误发生,则返回 z
的复余弦。
错误和特殊情况如同操作以 ccosh(I*z) 实现一般。
注意
余弦在复平面上是整函数,而且无分支切割。
余弦的数学定义是 cos z =eiz +e-iz |
2 |
示例
运行此代码
#include <stdio.h> #include <math.h> #include <complex.h> int main(void) { double complex z = ccos(1); // 表现如同沿着实轴的实余弦 printf("cos(1+0i) = %f%+fi ( cos(1)=%f)\n", creal(z), cimag(z), cos(1)); double complex z2 = ccos(I); // 表现如同沿着虚轴的实 cosh printf("cos(0+1i) = %f%+fi (cosh(1)=%f)\n", creal(z2), cimag(z2), cosh(1)); }
输出:
cos(1+0i) = 0.540302-0.000000i ( cos(1)=0.540302) cos(0+1i) = 1.543081-0.000000i (cosh(1)=1.543081)
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.3.5.4 The ccos functions (p: 191)
- 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.5.4 The ccos functions (p: 173)
- 7.22 Type-generic math <tgmath.h> (p: 335-337)
- G.7 Type-generic math <tgmath.h> (p: 480)
参阅
(C99)(C99)(C99) |
计算复数正弦 (函数) |
(C99)(C99)(C99) |
计算复数正切 (函数) |
(C99)(C99)(C99) |
计算复数反余弦 (函数) |
(C99)(C99) |
计算余弦( cos(x) ) (函数) |