C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 常用数学函数
- std::abs(int), std::labs, std::llabs, std::imaxabs
- std::div, std::ldiv, std::lldiv
- std::fmod, std::fmodf, std::fmodl
- std::remainder, std::remainderf, std::remainderl
- std::remquo, std::remquof, std::remquol
- std::hypot, std::hypotf, std::hypotl
- std::abs(float), std::fabs, std::fabsf, std::fabsl
- std::sqrt, std::sqrtf, std::sqrtl
- std::sin, std::sinf, std::sinl
- std::fma, std::fmaf, std::fmal
- std::fmax, std::fmaxf, std::fmaxl
- std::fmin, std::fminf, std::fminl
- std::fdim, std::fdimf, std::fdiml
- NAN
- std::exp, std::expf, std::expl
- std::exp2, std::exp2f, std::exp2l
- std::expm1, std::expm1f, std::expm1l
- std::log, std::logf, std::logl
- std::log10, std::log10f, std::log10l
- std::log1p, std::log1pf, std::log1pl
- std::log2, std::log2f, std::log2l
- std::cbrt, std::cbrtf, std::cbrtl
- std::pow, std::powf, std::powl
- std::cos, std::cosf, std::cosl
- std::tan, std::tanf, std::tanl
- std::asin, std::asinf, std::asinl
- std::acos, std::acosf, std::acosl
- std::atan, std::atanf, std::atanl
- std::atan2, std::atan2f, std::atan2l
- std::sinh, std::sinhf, std::sinhl
- std::cosh, std::coshf, std::coshl
- std::tanh, std::tanhf, std::tanhl
- std::asinh, std::asinhf, std::asinhl
- std::acosh, std::acoshf, std::acoshl
- std::atanh, std::atanh, std::atanhl
- std::erf, std::erff, std::erfl
- std::erfc, std::erfcf, std::erfcl
- std::lgamma, std::lgammaf, std::lgammal
- std::tgamma, std::tgammaf, std::tgammal
- std::ceil, std::ceilf, std::ceill
- std::floor, std::floorf, std::floorl
- std::round, std::roundf, std::roundl, std::lround, std::lroundf, std::lroundl, std::llround, std::llroundf
- std::trunc, std::truncf, std::truncl
- std::nearbyint, std::nearbyintf, std::nearbyintl
- std::rint, std::rintf, std::rintl, std::lrint, std::lrintf, std::lrintl, std::llrint, std::llrintf
- std::ldexp, std::ldexpf, std::ldexpl
- std::scalbn, std::scalbnf, std::scalbnl, std::scalbln, std::scalblnf, std::scalblnl
- std::ilogb, std::ilogbf, std::ilogbl
- std::logb, std::logbf, std::logbl
- std::frexp, std::frexpf, std::frexpl
- std::modf, std::modff, std::modfl
- std::nextafter, std::nextafterf, std::nextafterl, std::nexttoward, std::nexttowardf, std::nexttowardl
- std::copysign, std::copysignf, std::copysignl
- std::fpclassify
- std::isfinite
- std::isinf
- std::isnan
- std::isnormal
- std::signbit
- std::isgreater
- std::isgreaterequal
- std::isless
- std::islessequal
- std::islessgreater
- std::isunordered
- HUGE_VALF, HUGE_VAL, HUGE_VALL
- INFINITY
- MATH_ERRNO, MATH_ERREXCEPT, math_errhandling
- FP_NORMAL, FP_SUBNORMAL, FP_ZERO, FP_INFINITE, FP_NAN
- std::midpoint
- std::lerp
- std::has_single_bit
- std::bit_ceil
- std::bit_floor
- std::bit_width
- std::rotl
- 数学特殊函数
- 伪随机数生成
- 浮点环境
- std::complex
- std::valarray
- 编译时有理数算术
- std::gcd
- std::lcm
- 数学常数
- std::bit_cast
- std::rotr
- std::countl_zero
- std::countl_one
- std::countr_zero
- std::countr_one
- std::popcount
- 注释
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::hypot, std::hypotf, std::hypotl
定义于头文件 <cmath>
|
||
float hypot ( float x, float y ); float hypotf( float x, float y ); |
(1) | (C++11 起) |
double hypot ( double x, double y ); |
(2) | (C++11 起) |
long double hypot ( long double x, long double y ); long double hypotl( long double x, long double y ); |
(3) | (C++11 起) |
Promoted hypot ( Arithmetic1 x, Arithmetic2 y ); |
(4) | (C++11 起) |
float hypot ( float x, float y, float z ); |
(5) | (C++17 起) |
double hypot ( double x, double y, double z ); |
(6) | (C++17 起) |
long double hypot ( long double x, long double y, long double z ); |
(7) | (C++17 起) |
Promoted hypot ( Arithmetic1 x, Arithmetic2 y, Arithmetic3 z ); |
(8) | (C++17 起) |
1-3) 计算
x
与 y
平方和的平方根,而不会在计算的中间阶段有过度的上溢或下溢。4) 所有 (1-3) 所不覆盖的算术类型参数组合的重载集或函数模板。若任何参数拥有整数类型,则它被转型为 double 。若任何其他参数为 long double ,则返回类型为 long double ,否则为 double 。
5-7) 计算
x
、 y
和 z
平方和的平方根,而不会在计算的中间阶段有过度的上溢或下溢。8) 所有 (5-7) 所不覆盖的算术类型参数组合的重载集或函数模板。若任何参数拥有整数类型,则它被转型为 double 。若任何其他参数为 long double ,则返回类型为 long double ,否则为 double 。
此函数的双参数版本所计算的是直角边长度为 x
和 y
的直角三角形的斜边长,或点 (x,y)
距原点 (0,0)
的距离,或复数 x+iy
的绝对值。
此函数的三参数版本所计算的值是点 (x,y,z)
到原点 (0,0,0)
的距离。
参数
x, y, z | - | 浮点或整数类型值 |
返回值
1-4) 若不出现错误,则返回直角三角形的斜边, √x2
+y2
。
+y2
。
5-8) 若不出现错误,则返回三维空间中到原点的距离, √x2
+y2
+z2
。
+y2
+z2
。
若出现上溢所致的值域错误,则返回 +HUGE_VAL
、 +HUGE_VALF
或 +HUGE_VALL
。
若出现下溢所致的值域错误,则返回(舍入后的)正确结果。
错误处理
报告 math_errhandling 中指定的错误。
若实现支持 IEEE 浮点算术( IEC 60559 ),则
- hypot(x, y) 、 hypot(y, x) 及 hypot(x, -y) 等价
- 若参数之一为 ±0 ,则
hypot
等价于以非零参数调用 fabs - 若参数之一为 ±∞ ,则
hypot
返回 +∞ ,即使另一参数为 NaN - 否则,若任何参数为 NaN ,则返回 NaN
注意
实现通常保证小于 1 ulp (最后位置单位)的精度: GNU 、 BSD 、 Open64 。
std::hypot(x, y) 等价于 std::abs(std::complex<double>(x,y)) 。
POSIX 指定仅若二个参数均为非正规且正确结果亦为非正规才可以出现下溢(这禁止朴素实现)。
能以 std::hypot(x2-x1, y2-y1, z2-z1) 计算二个点 |
(C++17 起) |
示例
运行此代码
#include <iostream> #include <cmath> #include <cerrno> #include <cfenv> #include <cfloat> #include <cstring> #pragma STDC FENV_ACCESS ON int main() { // 通常用法 std::cout << "(1,1) cartesian is (" << std::hypot(1,1) << ',' << std::atan2(1,1) << ") polar\n"; // 特殊值 std::cout << "hypot(NAN,INFINITY) = " << std::hypot(NAN,INFINITY) << '\n'; // 错误处理 errno = 0; std::feclearexcept(FE_ALL_EXCEPT); std::cout << "hypot(DBL_MAX,DBL_MAX) = " << std::hypot(DBL_MAX,DBL_MAX) << '\n'; if (errno == ERANGE) std::cout << " errno = ERANGE " << std::strerror(errno) << '\n'; if (fetestexcept(FE_OVERFLOW)) std::cout << " FE_OVERFLOW raised\n"; }
输出:
(1,1) cartesian is (1.41421,0.785398) polar hypot(NAN,INFINITY) = inf hypot(DBL_MAX,DBL_MAX) = inf errno = ERANGE Numerical result out of range FE_OVERFLOW raised
参阅
(C++11)(C++11) |
求某数的给定次幂( xy ) (函数) |
(C++11)(C++11) |
计算平方根( √x ) (函数) |
(C++11)(C++11)(C++11) |
计算立方根( 3√x ) (函数) |
返回复数的模 (函数模板) |