Stats.GetMeanEstimate Method

Returns an estimate for the mean of the variable.

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Parameter<double> GetMeanEstimate(
	this Vector<double> values
)

Parameters

values  Vector<Double>
 

Return Value

Parameter<Double>
A Parameter<T> value containing information about the value and the distribution of the mean of the variable.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<Double>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also