当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 erfc用法及代码示例


C语言math头文件(math.h)中erfc函数的用法及代码示例。

用法:

     double erfc  (double x);
      float erfcf (float x);
long double erfcl (long double x);
计算互补误差函数
complementary error function返回互补误差函数的价值x

这个互补误差函数等效于:
erfc(x) = 1-erf(x)
标头<tgmath.h>提供此函数的type-generic宏版本。
额外的过载在此头文件中提供(<cmath>) 为了整数类型:这些重载有效地转换x到一个double计算之前(为T有任何整数类型)。

参数

x
的参数互补误差函数

返回值

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

如果下溢范围误差发生:
- 和math_errhandlingMATH_ERRNO设置:全局变量errno被设定为ERANGE
- 和math_errhandlingMATH_ERREXCEPT设置:FE_UNDERFLOW被抛出

示例

/* 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

相关用法


注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C erfc function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。