StatisticFormula.InverseNormalDistribution Method (Double)

.NET Framework (current version)
 

The inverse normal distribution formula calculates the inverse of the standard normal cumulative distribution. The distribution has a mean of 0 and a standard deviation of one.

Namespace:   System.Web.UI.DataVisualization.Charting
Assembly:  System.Web.DataVisualization (in System.Web.DataVisualization.dll)

public double InverseNormalDistribution(
	double probability
)

Parameters

probability
Type: System.Double

Alpha value. The acceptable input range is between 0 and 1.

Return Value

Type: System.Double

Inverse of the normal distribution function.

The following code demonstrates how to use this formula.

double result = Chart1.DataManipulator.Statistics.InverseNormalDistribution(.05);

.NET Framework
Available since 4.0
Return to top
Show: