|
MeasuresPooledStandardDeviation Method (Int32, Double, Boolean)
|
Computes the pooled standard deviation of the given values.
Namespace:
Accord.Statistics
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double PooledStandardDeviation(
int[] sizes,
double[] variances,
bool unbiased = true
)
Public Shared Function PooledStandardDeviation (
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 compute a pooled standard deviation using unbiased estimates
of the population variance; false otherwise. Default is true.
Return Value
Type:
DoubleSee Also