函数
<cmath> <ctgmath>

erf

     double erf  (double x);      float erff (float x);long double erfl (long double x);
     double erf (double x);      float erf (float x);long double erf (long double x);     double erf (T x);           // additional overloads for integral types
计算误差函数
误差函数 返回 x误差函数值。

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件(<cmath>)为整型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double(为任意整型T 定义)。

参数

x
用于误差函数的参数。

返回值

x 的误差函数值。

示例

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

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

输出

erf (1.000000) = 0.842701


另见