📜  C++ STL-math.erf()函数

📅  最后修改于: 2020-10-19 00:31:59             🧑  作者: Mango

C++ STL math.erf()

erf()函数计算传递给该函数的参数的错误函数值。

句法

假设数字是“ x”:

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

参数

×:是浮点值。

返回值

它返回x的误差函数值。

Parameter Return value
x=±0 ±0
x=± infinite ±1
x=nan nan

例子1

让我们看一个简单的例子。

#include 
#include
using namespace std;
int main()
{
     double x= 6.2;
     cout<<"Value of x is : "<

输出:

Value of x is : 6.2
erf(x) : 1

在上面的示例中,x的值为6.2。 erf()函数返回值,即1。

例子2

让我们看一个简单的例子,当x的值是无穷大时。

#include 
#include
using namespace std;
int main()
{
     double x= 1.0/0.0;
     cout<<"Value of x is : "<

输出:

Value of x is : inf
erf(x) : 1

在上面的示例中,x的值是无限的。因此,函数erf()返回值1。

例子3

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

#include 
#include
using namespace std;
int main()
{
     float x= 0.0;
     cout<<"Value of x is : "<

输出:

Value of x is : 0
erf(x) : 0

在上面的示例中,x的值为零。因此,函数erf()返回0值。

例子4

让我们看一下x的值为nan时的简单示例。

#include 
#include
using namespace std;
int main()
{
     float x= 0.0/0.0;
     cout<<"Value of x is : "<

输出:

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

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