2.1.16.6.2.4 erfcinv


Description

Inverse complement of error function, erfcinv(dy)

Syntax

double erfcinv( double dy )

Parameters

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

Return

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

Examples

EX1

void erfcinv_ex1()
{
    double y,x=1.2;
    y=erfcinv(x); 
	out_double("Result:", y);// Result:-0.17914
}

Remark

See Also

erfc

Header to Include

origin.h

Reference