An update of the mean of the time series z.

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

Syntax

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

Field Value

A double scalar containing the mean of the time series z.

Remarks

If the time series is not centered about its mean, and the least-squares algorithm is used, the mean is not used in parameter estimation. Note that the Compute method must be invoked first before invoking this method. Otherwise, the return value is 0.

See Also