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 标准库
- 有用的资源
- 符号索引
- 注释
remquo, remquof, remquol
定义于头文件 <math.h>
|
||
float remquof( float x, float y, int *quo ); |
(1) | (C99 起) |
double remquo( double x, double y, int *quo ); |
(2) | (C99 起) |
long double remquol( long double x, long double y, int *quo ); |
(3) | (C99 起) |
定义于头文件 <tgmath.h>
|
||
#define remquo( x, y, quo ) |
(4) | (C99 起) |
4) 泛型宏:若任何非指针参数拥有 long double 类型,则调用
remquol
。否则,若任何非指针参数拥有整数类型或 double 类型,则调用 remquo
。否则,调用 remquof
。参数
x, y | - | 浮点值 |
quo | - | 指向存储 x/y 的符号和某些位的整数的指针 |
返回值
若成功,则返回定义于 remainder 的 x/y 的余数,并存储 x/y 的符号和至少后三位有效数字于 *quo (正式而言,存储的值的符号是 x/y 的符号,而绝对值与 x/y 的整数商的绝对值对于 modulo 2n
同余,其中 n 是实现定义的大于或等于 3 的整数)。
若 y
为零,则存储于 *quo 的值未指定。
若出现定义域错误,则返回实现定义值(受支持平台上为 NaN )。
若出现下溢所致的值域错误,则若支持非正规值则返回正确结果。
若 y
为零,但不出现定义域错误,则返回零。
错误处理
报告 math_errhandling 中指定的错误。
若 y
为零则可能出现定义域错误。
若实现支持 IEEE 浮点算术( IEC 60559 ),则
- 当前舍入模式无效。
- 决不引发 FE_INEXACT 。
- 若
x
为 ±∞ 且y
非 NaN ,则返回 NaN 并引发 FE_INVALID 。 - 若
y
为 ±0 且x
非 NaN ,则返回 NaN 并引发 FE_INVALID 。 - 若
x
或y
为 NaN ,则返回 NaN 。
注意
POSIX 要求若 x
为无穷大或 y
为零则出现定义域错误。
此函数在实现周期可准确表示为浮点值的周期函数时有用:对非常大的 x
计算 sin(πx) 时,直接调用 sin 可能导致巨大误差,但若首先以 remquo
减小参数,则商的低位可用来确定结果在周期中的八分位,同时余数可用来计算拥有高精度的值。
某些平台上硬件支持此运算(而例如在 Intel CPU 上, FPREM1
在完成时于商中准确保留 3 位精度)。
示例
运行此代码
#include <stdio.h> #include <math.h> #include <fenv.h> #pragma STDC FENV_ACCESS ON double cos_pi_x_naive(double x) { double pi = acos(-1); return cos(pi * x); } // 周期为 2 ,值为 (0;0.5) 正, (0.5;1.5) 负, (1.5,2) 正 double cos_pi_x_smart(double x) { int quadrant; double rem = remquo(x, 1, &quadrant); quadrant = (unsigned)quadrant % 4; // 保留 2 位以确定象限 double pi = acos(-1); switch(quadrant) { case 0: return cos(pi * rem); case 1: return -cos(pi * rem); case 2: return -cos(pi * rem); case 3: return cos(pi * rem); }; } int main(void) { printf("cos(pi * 0.25) = %f\n", cos_pi_x_naive(0.25)); printf("cos(pi * 1.25) = %f\n", cos_pi_x_naive(1.25)); printf("cos(pi * 1000000000000.25) = %f\n", cos_pi_x_naive(1000000000000.25)); printf("cos(pi * 1000000000001.25) = %f\n", cos_pi_x_naive(1000000000001.25)); printf("cos(pi * 1000000000000.25) = %f\n", cos_pi_x_smart(1000000000000.25)); printf("cos(pi * 1000000000001.25) = %f\n", cos_pi_x_smart(1000000000001.25)); // 错误处理 feclearexcept(FE_ALL_EXCEPT); int quo; printf("remquo(+Inf, 1) = %.1f\n", remquo(INFINITY, 1, &quo)); if(fetestexcept(FE_INVALID)) puts(" FE_INVALID raised"); }
可能的输出:
cos(pi * 0.25) = 0.707107 cos(pi * 1.25) = -0.707107 cos(pi * 1000000000000.25) = 0.707123 cos(pi * 1000000000001.25) = -0.707117 cos(pi * 1000000000000.25) = 0.707107 cos(pi * 1000000000001.25) = -0.707107 remquo(+Inf, 1) = -nan FE_INVALID raised
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.12.10.3 The remquo functions (p: 255)
- 7.25 Type-generic math <tgmath.h> (p: 373-375)
- F.10.7.3 The remquo functions (p: 529)
- C99 standard (ISO/IEC 9899:1999):
- 7.12.10.3 The remquo functions (p: 236)
- 7.22 Type-generic math <tgmath.h> (p: 335-337)
- F.9.7.3 The remquo functions (p: 465)
参阅
(C99) |
计算整数除法的商和余数 (函数) |
(C99)(C99) |
计算浮点除法运算的余数 (函数) |
(C99)(C99)(C99) |
计算浮点除法运算的带符号余数 (函数) |