std::cbrt,std::cbrtf,std::cbrtl
来自 cppreference.com
定义于头文件 <cmath> |
||
(1) | ||
float cbrt ( float num ); double cbrt ( double num ); |
(直到 C++23) | |
/* 浮点类型 */ cbrt ( /* 浮点类型 */ num ); |
(自 C++23 起) (自 C++26 起为 constexpr) |
|
float cbrtf( float num ); |
(2) | (自 C++11 起) (自 C++26 起为 constexpr) |
long double cbrtl( long double num ); |
(3) | (自 C++11 起) (自 C++26 起为 constexpr) |
其他重载 (自 C++11 起) |
||
定义于头文件 <cmath> |
||
template< class Integer > double cbrt ( Integer num ); |
(A) | (自 C++26 起为 constexpr) |
1-3) 计算 num 的立方根。 库为所有 cv-unqualified 浮点类型提供
std::cbrt
的重载,作为参数的类型。(自 C++23 起)
A) 为所有整数类型提供其他重载,这些类型被视为 double.
|
(自 C++11 起) |
内容 |
[编辑] 参数
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 <iomanip> #include <iostream> #include <limits> int main() { std::cout << "Normal use:\n" << "cbrt(729) = " << std::cbrt(729) << '\n' << "cbrt(-0.125) = " << std::cbrt(-0.125) << '\n' << "Special values:\n" << "cbrt(-0) = " << std::cbrt(-0.0) << '\n' << "cbrt(+inf) = " << std::cbrt(INFINITY) << '\n' << "Accuracy and comparison with `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'; }
可能的输出
Normal use: cbrt(729) = 9 cbrt(-0.125) = -0.5 Special values: cbrt(-0) = -0 cbrt(+inf) = inf Accuracy and comparison with `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 起) (函数) |
C 文档 for cbrt
|