2.1.16.6.2.3 erfc


Description

Complement of error function erfc(x)

Syntax

double erfc( double x )

Parameters

x
[input] The argument x of the complement of error function erfc(x)

Return

Returns the value of the complement of error function erfc(x)

Examples

EX1

void erfc_ex1()
{
    double y,x=1.2;
    y=erfc(x); 
	out_double("Result:", y);// Result:0.08969
}

Remark

See Also

erf, inverf, erfcinv

Header to Include

origin.h

Reference