C 参考手册
- C 语言
- C 关键词
- 预处理器
- C 标准库头文件
- 类型支持
- 程序支持工具
- 变参数函数
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 算法
- 数值
- 常用数学函数
- MATH_ERRNO, MATH_ERREXCEPT, math_errhandling
- log, logf, logl
- log10, log10f, log10l
- log1p, log1pf, log1pl
- log2, log2f, log2l
- cbrt, cbrtf, cbrtl
- fmax, fmaxf, fmaxl
- fmin, fminf, fminl
- fdim
- NAN
- exp, expf, expl
- exp2, exp2f, exp2l
- expm1, expm1f, expm1l
- fmod, fmodf, fmodl
- remainder, remainderf, remainderl
- remquo, remquof, remquol
- fma, fmaf, fmal
- div, ldiv, lldiv, imaxdiv
- fabs, fabsf, fabsl
- sqrt, sqrtf, sqrtl
- sin, sinf, sinl
- abs, labs, llabs, imaxabs
- hypot, hypotf, hypotl
- pow, powf, powl
- cos, cosf, cosl
- tan, tanf, tanl
- asin, asinf, asinl
- acos, acosf, acosl
- atan, atanf, atanl
- atan2, atan2f, atan2l
- sinh, sinhf, sinhl
- cosh, coshf, coshl
- tanh, tanhf, tanhl
- asinh, asinhf, asinhl
- acosh, acoshf, acoshl
- atanh, atanhf, atanhl
- erf, erff, erfl
- erfc, erfcf, erfcl
- lgamma, lgammaf, lgammal
- tgamma, tgammaf, tgammal
- ceil, ceilf, ceill
- floor, floorf, floorl
- round, roundf, roundl, lround, lroundf, lroundl, llround, llroundf, llroundl
- trunc, truncf, truncl
- nearbyint, nearbyintf, nearbyintl
- rint, rintf, rintl, lrint, lrintf, lrintl, llrint, llrintf, llrintl
- ldexp, ldexpf, ldexpl
- scalbn, scalbnf, scalbnl, scalbln, scalblnf, scalblnl
- ilogb, ilogbf, ilogbl
- logb, logbf, logbl
- frexp, frexpf, frexpl
- modf, modff, modfl
- nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl
- copysign, copysignf, copysignl
- fpclassify
- isfinite
- isinf
- isnan
- isnormal
- signbit
- isgreater
- isgreaterequal
- isless
- islessequal
- islessgreater
- isunordered
- float_t, double_t
- HUGE_VALF, HUGE_VAL, HUGE_VALL
- INFINITY
- FP_NORMAL, FP_SUBNORMAL, FP_ZERO, FP_INFINITE, FP_NAN
- 浮点环境
- 伪随机数生成
- 复数算术
- 泛型数学
- 文件输入/输出
- 本地化支持
- 原子操作库
- 线程支持库
- 实验性 C 标准库
- 有用的资源
- 符号索引
- 注释
tan, tanf, tanl
定义于头文件 <math.h>
|
||
float tanf( float arg ); |
(1) | (C99 起) |
double tan( double arg ); |
(2) | |
long double tanl( long double arg ); |
(3) | (C99 起) |
定义于头文件 <tgmath.h>
|
||
#define tan( arg ) |
(4) | (C99 起) |
1-3) 计算
arg
(以弧度度量)的正切。4) 泛型宏:若参数拥有 long double 类型,则调用
tanl
。否则,若参数拥有整数类型或 double 类型,则调用 tan
。否则调用 tanf
。若参数为复数,则宏调用对应的复数函数( ctanf 、 ctan 、 ctanl )。参数
arg | - | 以弧度表示角的浮点值 |
返回值
若不出现错误,则返回 arg
的正切( tan(arg) )。
若 |
(C99 前) |
若出现定义域错误,则返回实现定义值(受支持平台为 NaN )。
若发生下溢所致的值域错误,则返回(舍入后的)正确结果。
错误处理
报告 math_errhandling 中指定的错误。
若实现支持 IEEE 浮点算数( IEC 60559 ),则
- 若参数为 ±0 ,则返回不修改的参数
- 若参数为 ±∞ ,则返回 NaN 并引发 FE_INVALID
- 若参数为 NaN ,则返回 NaN
注意
C 中参数为无限大的情况未被指定为定义域错误,但它被定义为 POSIX 中的定义域错误。
函数在 π(1/2 + n) 有数学上的极点;然而无常用浮点表示能准确表示 π/2 ,故而没有值使得极点错误出现。
示例
运行此代码
#include <stdio.h> #include <math.h> #include <errno.h> #include <fenv.h> #pragma STDC FENV_ACCESS ON int main(void) { double pi = acos(-1); // 典型用法 printf("tan (pi/4) = %+f\n", tan( pi/4)); // 45° printf("tan(3*pi/4) = %+f\n", tan(3*pi/4)); // 135° printf("tan(5*pi/4) = %+f\n", tan(5*pi/4)); // -135° printf("tan(7*pi/4) = %+f\n", tan(7*pi/4)); // -45° // 特殊值 printf("tan(+0) = %f\n", tan(0.0)); printf("tan(-0) = %f\n", tan(-0.0)); // 错误处理 feclearexcept(FE_ALL_EXCEPT); printf("tan(INFINITY) = %f\n", tan(INFINITY)); if(fetestexcept(FE_INVALID)) puts(" FE_INVALID raised"); }
可能的输出:
tan (pi/4) = +1.000000 tan(3*pi/4) = -1.000000 tan(5*pi/4) = +1.000000 tan(7*pi/4) = -1.000000 tan(+0) = 0.000000 tan(-0) = -0.000000 tan(INFINITY) = -nan FE_INVALID raised
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.12.4.7 The tan functions (p: 240)
- 7.25 Type-generic math <tgmath.h> (p: 373-375)
- F.10.1.7 The tan functions (p: 519)
- C99 standard (ISO/IEC 9899:1999):
- 7.12.4.7 The tan functions (p: 220)
- 7.22 Type-generic math <tgmath.h> (p: 335-337)
- F.9.1.7 The tan functions (p: 457)
- C89/C90 standard (ISO/IEC 9899:1990):
- 4.5.2.7 The tan function
参阅
(C99)(C99) |
计算正弦( sin(x) ) (函数) |
(C99)(C99) |
计算余弦( cos(x) ) (函数) |
(C99)(C99) |
计算反正切( arctan(x) ) (函数) |
(C99)(C99)(C99) |
计算复数正切 (函数) |