|
MeasuresPooledStandardDeviation Method (Boolean, Double)
|
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(
bool unbiased,
params double[][] samples
)
Public Shared Function PooledStandardDeviation (
unbiased As Boolean,
ParamArray samples As Double()()
) As Double
Request Example
View SourceParameters
- unbiased
- Type: SystemBoolean
True to compute a pooled standard deviation using unbiased estimates
of the population variance; false otherwise. Default is true. - samples
- Type: SystemDouble
The grouped samples.
Return Value
Type:
DoubleSee Also