The confidence level (in percent) for a two-sided interval estimate of the mean of x - the mean of y, in percent.

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

Syntax

C#
public double ConfidenceMean { get; set; }
Visual Basic (Declaration)
Public Property ConfidenceMean As Double
Visual C++
public:
property double ConfidenceMean {
	double get ();
	void set (double value);
}

Field Value

A double containing the confidence level of the mean.

Remarks

ConfidenceMean must be between 0.0 and 1.0 and is often 0.90, 0.95 or 0.99. For a one-sided confidence interval with confidence level c (at least 50 percent), set {\rm {ConfidenceMean}} 
            = 1.0 - 2.0(1.0 - c). If the confidence mean is not specified, a 95-percent confidence interval is computed, ConfidenceMean = .95.

See Also