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 标准库
- 有用的资源
- 符号索引
- 注释
sqrt, sqrtf, sqrtl
定义于头文件 <math.h>
|
||
float sqrtf( float arg ); |
(1) | (C99 起) |
double sqrt( double arg ); |
(2) | |
long double sqrtl( long double arg ); |
(3) | (C99 起) |
定义于头文件 <tgmath.h>
|
||
#define sqrt( arg ) |
(4) | (C99 起) |
1-3) 计算
arg
的平方根。4) 泛型宏:若
arg
拥有 long double 类型,则调用 sqrtl
。否则,若 arg
拥有整数类型或 double 类型,则调用 sqrt
。否则调用 sqrtf
。若 arg
为复数或虚数,则宏调用对应复数函数( csqrtf 、 csqrt 、 csqrtl )。参数
arg | - | 浮点值 |
返回值
若不出现错误,则返回 arg
的平方根( √arg )。
若出现定义域错误,则返回实现定义值(支持的平台上为 NaN )。
若出现下溢所致的值域错误,则返回(舍入后的)正确结果。
错误处理
报告 math_errhandling 中指定的错误。
若 arg
小于零则出现定义域错误。
若实现支持 IEEE 浮点算术( IEC 60559 ),则
- 若参数小于 -0 ,则引发 FE_INVALID 并返回 NaN 。
- 若参数为 +∞ 或 ±0 ,则返回不修改的参数。
- 若参数为 NaN ,则返回 NaN 。
注解
IEEE 标准要求 sqrt
为准确。其他要求为准确的运算只有算术运算符和函数 fma 。舍入到返回类型后(用默认舍入模式), sqrt
的结果与无限精度结果不可辨别。换言之,误差小于 0.5 ulp 。其他函数,含 pow ,不受这种制约。
示例
运行此代码
#include <stdio.h> #include <math.h> #include <errno.h> #include <fenv.h> #pragma STDC FENV_ACCESS ON int main(void) { // 正常使用 printf("sqrt(100) = %f\n", sqrt(100)); printf("sqrt(2) = %f\n", sqrt(2)); printf("golden ratio = %f\n", (1+sqrt(5))/2); // 特殊值 printf("sqrt(-0) = %f\n", sqrt(-0.0)); // 错误处理 errno = 0; feclearexcept(FE_ALL_EXCEPT); printf("sqrt(-1.0) = %f\n", sqrt(-1)); if(errno == EDOM) perror(" errno == EDOM"); if(fetestexcept(FE_INVALID)) puts(" FE_INVALID was raised"); }
可能的输出:
sqrt(100) = 10.000000 sqrt(2) = 1.414214 golden ratio = 1.618034 sqrt(-0) = -0.000000 sqrt(-1.0) = -nan errno = EDOM: Numerical argument out of domain FE_INVALID was raised
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.12.7.5 The sqrt functions (p: 249)
- 7.25 Type-generic math <tgmath.h> (p: 373-375)
- F.10.4.5 The sqrt functions (p: 525)
- C99 standard (ISO/IEC 9899:1999):
- 7.12.7.5 The sqrt functions (p: 229-230)
- 7.22 Type-generic math <tgmath.h> (p: 335-337)
- F.9.4.5 The sqrt functions (p: 462)
- C89/C90 standard (ISO/IEC 9899:1990):
- 4.5.5.2 The sqrt function
参阅
(C99)(C99) |
计算一个数的给定次幂( xy ) (函数) |
(C99)(C99)(C99) |
计算立方根( 3√x ) (函数) |
(C99)(C99)(C99) |
计算两个给定数平方和的平方根 ( √x2 +y2 ) (函数) |
(C99)(C99)(C99) |
计算复数平方根 (函数) |