erf() 函数计算传递给函数的参数的误差函数值。
用法
假设一个数字是 'x':
float erf( float x);
double erf( double x);
long double erf( long double x);
double erf( integral x);
参数
x: 它是一个浮点值。
返回值
它返回 x 的误差函数值。
参数 | 返回值 | |
---|---|---|
x=±0 | ±0 | |
x=±无穷大 | ±1 | |
x=nan | nan |
例子1
让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x= 6.2;
cout<<"Value of x is:"<<x<<'\n';
cout<<"erf(x):"<<erf(x);
return 0;}
输出:
Value of x is:6.2 erf(x):1
在上面的例子中,x 的值为 6.2。 erf() 函数返回值,即 1。
例子2
让我们看一个简单的例子,当 x 的值是无穷大时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x= 1.0/0.0;
cout<<"Value of x is:"<<x<<'\n';
cout<<"erf(x):"<<erf(x);
return 0;
}
输出:
Value of x is:inf erf(x):1
在上面的例子中,x 的值是无限的。因此,函数 erf() 返回值 1。
例子3
让我们看看 x 的值为零时的简单示例。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x= 0.0;
cout<<"Value of x is:"<<x<<'\n';
cout<<"erf(x):"<<erf(x);
return 0;
}
输出:
Value of x is:0 erf(x):0
在上面的例子中,x 的值为零。因此,函数 erf() 返回 0 值。
示例 4
让我们看一个简单的例子,当 x 的值为 nan 时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x= 0.0/0.0;
cout<<"Value of x is:"<<x<<'\n';
cout<<"erf(x):"<<erf(x);
return 0;
}
输出:
Value of x is:-nan erf(x):-nan
在上面的例子中,x 的值为 nan。因此,函数 erf() 返回 nan。
相关用法
- C++ Math erfc()用法及代码示例
- C++ Math exp()用法及代码示例
- C++ Math expm1()用法及代码示例
- C++ Math exp2()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math cosh()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math erf()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。