函数
<cmath> <ctgmath>

erfc

     double erfc  (double x);      float erfcf (float x);long double erfcl (long double x);
     double erfc (double x);      float erfc (float x);long double erfc (long double x);     double erfc (T x);           // additional overloads for integral types
计算互补误差函数
互补误差函数 返回x互补误差函数值。

互补误差函数等价于
erfc(x) = 1-erf(x)
头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件 (<cmath>) 中为整型提供了额外的重载:这些重载在计算前有效地将x转换为double(定义为T是任何整型)。

参数

x
互补误差函数的参数。

返回值

x的互补误差函数值。
如果x太大,会发生下溢范围错误

如果发生下溢范围错误
- 并且 math_errhandling 设置了 MATH_ERRNO:全局变量 errno 被设置为 ERANGE
- 并且 math_errhandling 设置了 MATH_ERREXCEPT:将引发 FE_UNDERFLOW

示例

1
2
3
4
5
6
7
8
9
10
11
12
/* erfc example */
#include <stdio.h>      /* printf */
#include <math.h>       /* erfc */

int main ()
{
  double param, result;
  param = 1.0;
  result = erfc (param);
  printf ("erfc(%f) = %f\n", param, result );
  return 0;
}

输出

erfc (1.000000) = 0.157299


另见