Returns the confidence interval for the mean (assuming normality).

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[] GetConfidenceMean(
	double p
)
Visual Basic (Declaration)
Public Function GetConfidenceMean ( _
	p As Double _
) As Double()
Visual C++
public:
array<double>^ GetConfidenceMean(
	double p
)

Parameters

p
Type: System..::.Double
A double which specifies the confidence level desired, usually 0.90, 0.95 or 0.99.

Return Value

A double array of length 2 which contains the lower and upper confidence limits for the mean.

See Also