Calculates Normal Distribution or Probability Density given the mean, and standard deviation

Namespace:  Hyleos.Mathematic
Assembly:  Hyleos.Mathematic (in Hyleos.Mathematic.dll) Version: 1.0.1.1 (1.0.1.1)

Syntax

C#
public static double NormalDistribution(
	double x,
	double mean,
	double deviation
)
Visual Basic (Declaration)
Public Shared Function NormalDistribution ( _
	x As Double, _
	mean As Double, _
	deviation As Double _
) As Double
Visual C++
public:
static double NormalDistribution(
	double x, 
	double mean, 
	double deviation
)

Parameters

x
Type: System..::.Double
The value for which you want the distribution.
mean
Type: System..::.Double
The arithmetic mean of the distribution.
deviation
Type: System..::.Double
The standard deviation of the distribution.

Return Value

Returns the normal distribution for the specified mean and standard deviation.

See Also