|
MeasuresGrandMean Method
|
Computes the (weighted) grand mean of a set of samples.
Namespace:
Accord.Statistics
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double GrandMean(
double[] means,
int[] samples
)
Public Shared Function GrandMean (
means As Double(),
samples As Integer()
) As Double
Request Example
View SourceParameters
- means
- Type: SystemDouble
A double array containing the sample means. - samples
- Type: SystemInt32
A integer array containing the sample's sizes.
Return Value
Type:
DoubleThe grand mean of the samples.
See Also