2.1.24.5.1.5 cumul_normal


Description

Cumulative Normal distribution function P(x)

Syntax

double cumul_normal( double x )

Parameters

x
[input] The argument x of the function

Return

Returns the value of the cumulative Normal distribution function P(x)

Examples

EX1

void cumul_normal_ex1()
{
	double x = 2.012, p;
	p = cumul_normal(x);
	out_double("Result:", p);  // Results:0.97789
}

Remark

See Also

cumul_normal_complem

Header to Include

origin.h

Reference