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 标准库
- 有用的资源
- 符号索引
- 注释
MATH_ERRNO, MATH_ERREXCEPT, math_errhandling
定义于头文件 <math.h>
|
||
#define MATH_ERRNO 1 |
(C99 起) | |
#define MATH_ERREXCEPT 2 |
(C99 起) | |
#define math_errhandling /*implementation defined*/ |
(C99 起) | |
宏常量 math_errhandling
展开成 int 类型的表达式,要么等于 MATH_ERRNO
,要么等于 MATH_ERREXCEPT
,要么等于其逐位或( MATH_ERRNO | MATH_ERREXCEPT )。
math_errhandling
的值指示浮点运算符和函数所进行的错误处理:
常量 | 解释 |
MATH_ERREXCEPT
|
指示使用浮点异常: <fenv.h> 中至少定义了 FE_DIVBYZERO 、 FE_INVALID 及 FE_OVERFLOW 。 |
MATH_ERRNO
|
指明浮点运算使用变量 errno 报告错误。 |
若实现支持 IEEE 浮点算术( IEC 60559 ),则要求 math_errhandling & MATH_ERREXCEPT 非零。
识别下列浮点错误条件:
条件 | 解释 | errno | 浮点异常 | 示例 |
---|---|---|---|---|
定义域错误 | 参数在该运算的数学上的定义域之外(每个函数的描述列出了要求的定义域错误) | EDOM | FE_INVALID | acos(2) |
极点错误 | 函数的数学结果恰是无限大或未定义 | ERANGE | FE_DIVBYZERO | log(0.0) 、 1.0/0.0 |
上溢所致的值域错误 | 数学结果有限,但舍入后变为无限,或在向下舍入后变成最大可表示有限值 | ERANGE | FE_OVERFLOW | pow(DBL_MAX,2) |
下溢所致的值域错误 | 结果非零,但因为舍入变为零,或变成非正规并有精度损失 | ERANGE 或不改变(实现定义) | FE_UNDERFLOW 或无(实现定义) | DBL_TRUE_MIN/2 |
结果不准确 | 结果必须被舍入到目标类型 | 不改变 | FE_INEXACT或无(未指定) | sqrt(2) 、 1.0/10.0 |
注意
通常, FE_INEXACT 是否为数学库函数所引发是未指定的,但这可以显式指定于函数的描述(例如 rint vs nearbyint )。
C99 前,浮点异常是未指定的,要求对于任何定义于错误发生 EDOM ,要求对上溢和实现定义的下溢发生 ERANGE 。
示例
运行此代码
#include <stdio.h> #include <fenv.h> #include <math.h> #include <errno.h> #pragma STDC FENV_ACCESS ON int main(void) { printf("MATH_ERRNO is %s\n", math_errhandling & MATH_ERRNO ? "set" : "not set"); printf("MATH_ERREXCEPT is %s\n", math_errhandling & MATH_ERREXCEPT ? "set" : "not set"); feclearexcept(FE_ALL_EXCEPT); errno = 0; printf("log(0) = %f\n", log(0)); if(errno == ERANGE) perror("errno == ERANGE"); if(fetestexcept(FE_DIVBYZERO)) puts("FE_DIVBYZERO (pole error) reported"); }
可能的输出:
MATH_ERRNO is set MATH_ERREXCEPT is set log(0) = -inf errno = ERANGE: Numerical result out of range FE_DIVBYZERO (pole error) reported
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.12/9 MATH_ERRNO, MATH_ERREXCEPT, math_errhandling (p: 233)
- F.10/4 MATH_ERREXCEPT, math_errhandling (p: 517)
- C99 standard (ISO/IEC 9899:1999):
- 7.12/9 MATH_ERRNO, MATH_ERREXCEPT, math_errhandling (p: 214)
- F.9/4 MATH_ERREXCEPT, math_errhandling> (p: 454)
参阅
浮点异常 (宏常量) | |
展开成 POSIX 兼容的线程局域错误编号变量 (宏变量) |