|
MeasuresPooledVariance Method (Boolean, Double)
|
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(
bool unbiased,
params double[][] samples
)
Public Shared Function PooledVariance (
unbiased As Boolean,
ParamArray samples As Double()()
) As Double
Request Example
View SourceParameters
- unbiased
- Type: SystemBoolean
True to obtain an unbiased estimate of the population
variance; false otherwise. Default is true. - samples
- Type: SystemDouble
The grouped samples.
Return Value
Type:
DoubleSee Also