std::cbrt, std::cbrtf, std::cbrtl
来自cppreference.com
在标头 <cmath> 定义
|
||
(1) | ||
float cbrt ( float num ); double cbrt ( double num ); |
(C++11 起) (C++23 前) |
|
/* 浮点类型 */ cbrt( /* 浮点类型 */ num ); |
(C++23 起) | |
float cbrtf( float num ); |
(2) | (C++11 起) |
long double cbrtl( long double num ); |
(3) | (C++11 起) |
在标头 <cmath> 定义
|
||
template< class Integer > double cbrt ( Integer num ); |
(A) | (C++11 起) |
1-3) 计算 num 的立方根。标准库提供所有以无 cv 限定的浮点类型作为参数 num 的类型的
std::cbrt
重载。 (C++23 起)A) 为所有整数类型提供额外重载,将它们当做 double。
参数
num | - | 浮点或整数值 |
返回值
如果没有发生错误,那么返回 num 的立方根(3√num)。
如果发生下溢导致的错误,那么返回(舍入后的)正确结果。
错误处理
报告 math_errhandling 中指定的错误。
如果实现支持 IEEE 浮点算术(IEC 60559),那么
- 如果参数是 ±0 或 ±∞,那么返回不更改的参数
- 如果参数是 NaN,那么返回 NaN
注解
std::cbrt(num) 不等价于 std::pow(num, 1.0 / 3),因为有理数1 |
3 |
额外重载不需要以 (A) 的形式提供。它们只需要能够对它们的整数类型实参 num 确保 std::cbrt(num) 和 std::cbrt(static_cast<double>(num)) 的效果相同。
示例
运行此代码
#include <cmath> #include <limits> #include <iomanip> #include <iostream> int main() { std::cout << "正常使用:\n" << "cbrt(729) = " << std::cbrt(729) << '\n' << "cbrt(-0.125) = " << std::cbrt(-0.125) << '\n' << "特殊值:\n" << "cbrt(-0) = " << std::cbrt(-0.0) << '\n' << "cbrt(+inf) = " << std::cbrt(INFINITY) << '\n' << "与 pow 的精度比较:\n" << std::setprecision(std::numeric_limits<double>::max_digits10) << "cbrt(343) = " << std::cbrt(343) << '\n' << "pow(343,1.0/3) = " << std::pow(343, 1.0 / 3) << '\n' << "cbrt(-343) = " << std::cbrt(-343) << '\n' << "pow(-343,1.0/3) = " << std::pow(-343, 1.0 / 3) << '\n'; }
输出:
正常使用: cbrt(729) = 9 cbrt(-0.125) = -0.5 特殊值: cbrt(-0) = -0 cbrt(+inf) = inf 与 pow 的精度比较: cbrt(343) = 7 pow(343,1.0/3) = 6.9999999999999991 cbrt(-343) = -7 pow(-343,1.0/3) = -nan
参阅
(C++11)(C++11) |
求某数的给定次幂(xy) (函数) |
(C++11)(C++11) |
计算平方根(√x) (函数) |
(C++11)(C++11)(C++11) |
计算两个或三个 (C++17 起)给定数的平方和的平方根(√x2 +y2 ),(√x2 +y2 +z2 ) (C++17 起) (函数) |