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


C++ Math erfc()用法及代码示例


erfc() 函数计算传递给函数的参数的互补误差函数值。

假设一个数字是 'x':

erfc(x) = 1-erf(x);

用法

float erfc(float x) ;
double erfc(double x) ;
long double erfc(long double x) ;
double erfc(integral x);

参数

x: 它是一个浮点值。

返回值

它返回 x 的互补误差函数值。

参数 返回值
x=+∞ +0
x= -∞ 2
x=nan nan

例子1

让我们看看 x 的值为 +∞ 时的简单示例。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float x= 2.0/0.0;
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"erfc(x):"<<erfc(x);
     return 0;
}

输出:

Value of x is:inf
erfc(x):0

在上面的例子中,x 的值为正无穷大。因此,函数 erfc() 返回 0 值。

例子2

当 x 的值为 -∞ 时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float x= -1.0/0.0;
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"erfc(x):"<<erfc(x);
     return 0;
}

输出:

Value of x is:-inf
erfc(x):2

在上面的例子中,x 的值为负无穷大。因此,函数 erfc() 返回 2。

例子3

让我们看一个简单的例子,当 x 的值为 nan 时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float x= sqrt(-2);
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"erfc(x):"<<erfc(x);
     return 0;
}

输出:

Value of x is:-nan
erfc(x):-nan

在上面的例子中,x 的值为 nan。因此,函数 erfc() 返回 nan。






相关用法


注:本文由纯净天空筛选整理自 C++ Math erfc()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。