|
MeasuresPooledVariance Method (Int32, Double, Boolean)
|
Computes the pooled variance of the given values.
Namespace:
Accord.Statistics
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double PooledVariance(
int[] sizes,
double[] variances,
bool unbiased = true
)
Public Shared Function PooledVariance (
sizes As Integer(),
variances As Double(),
Optional unbiased As Boolean = true
) As Double
Request Example
View SourceParameters
- sizes
- Type: SystemInt32
The number of samples used to compute the variances. - variances
- Type: SystemDouble
The unbiased variances for the samples. - unbiased (Optional)
- Type: SystemBoolean
True to obtain an unbiased estimate of the population
variance; false otherwise. Default is true.
Return Value
Type:
DoubleSee Also