2.1.24.5.1.6 cumul_normal_complem


Description

Complement of cumulative Normal distribution function Q(x)

Syntax

double cumul_normal_complem( double x )

Parameters

x
[input] The argument x of the function

Return

Returns the value of the complement of cumulative Normal distribution function Q(x)

Examples

EX1

void cumul_normal_complem_ex1()
{
	double x = 2.012, p;
	p = cumul_normal_complem(x);
	out_double("Results:", p);  //Results:0.02211
}

Remark

See Also

cumul_normal

Header to Include

origin.h

Reference