std::erfc, std::erfcf, std::erfcl
来自 cppreference.com
在头文件中定义 <cmath> |
||
(1) | ||
float erfc ( float num ); double erfc ( double num ); |
(直到 C++23) | |
/* 浮点类型 */ erfc ( /* 浮点类型 */ num ); |
(自 C++23 起) (自 C++26 起为 constexpr) |
|
float erfcf( float num ); |
(2) | (自 C++11 起) (自 C++26 起为 constexpr) |
long double erfcl( long double num ); |
(3) | (自 C++11 起) (自 C++26 起为 constexpr) |
其他重载 (自 C++11 起) |
||
在头文件中定义 <cmath> |
||
template< class Integer > double erfc ( Integer num ); |
(A) | (自 C++26 起为 constexpr) |
1-3) 计算 num 的 互补误差函数,即 1.0 - std::erf(num),但对于较大的 num,不会损失精度。 库为所有 cv 无限定浮点类型提供了
std::erfc
的重载作为参数类型。 (自 C++23 起)
A) 为所有整数类型提供其他重载,这些类型被视为 double。
|
(自 C++11 起) |
内容 |
[编辑] 参数
num | - | 浮点或整数值 |
[编辑] 返回值
如果未发生错误,则返回 num 的互补误差函数的值,即2 |
√π |
nume-t2
dt 或 1-erf(num)。
如果由于下溢而发生范围错误,则返回正确的结果(四舍五入后)。
[编辑] 错误处理
错误报告方式如 math_errhandling 中所述。
如果实现支持 IEEE 浮点算术(IEC 60559),则
- 如果参数为 +∞,则返回 +0。
- 如果参数为 -∞,则返回 2。
- 如果参数为 NaN,则返回 NaN。
[编辑] 注释
对于 IEEE 兼容类型 double,如果 num > 26.55,则保证会发生下溢。
其他重载不需要完全按照 (A) 提供。它们只需要足够保证对于其整数类型的参数 num,std::erfc(num) 与 std::erfc(static_cast<double>(num)) 具有相同的效果。
[编辑] 示例
运行此代码
#include <cmath> #include <iomanip> #include <iostream> double normalCDF(double x) // Phi(-∞, x) aka N(x) { return std::erfc(-x / std::sqrt(2)) / 2; } int main() { std::cout << "normal cumulative distribution function:\n" << std::fixed << std::setprecision(2); for (double n = 0; n < 1; n += 0.1) std::cout << "normalCDF(" << n << ") = " << 100 * normalCDF(n) << "%\n"; std::cout << "special values:\n" << "erfc(-Inf) = " << std::erfc(-INFINITY) << '\n' << "erfc(Inf) = " << std::erfc(INFINITY) << '\n'; }
输出
normal cumulative distribution function: normalCDF(0.00) = 50.00% normalCDF(0.10) = 53.98% normalCDF(0.20) = 57.93% normalCDF(0.30) = 61.79% normalCDF(0.40) = 65.54% normalCDF(0.50) = 69.15% normalCDF(0.60) = 72.57% normalCDF(0.70) = 75.80% normalCDF(0.80) = 78.81% normalCDF(0.90) = 81.59% normalCDF(1.00) = 84.13% special values: erfc(-Inf) = 2.00 erfc(Inf) = 0.00
[编辑] 另请参见
(C++11)(C++11)(C++11) |
误差函数 (函数) |
C 文档 针对 erfc
|
[编辑] 外部链接
Weisstein, Eric W. "Erfc." 来自 Wolfram Web 资源 MathWorld。 |