  | NMathFunctionsStandardDeviation(Double, BiasType) Method | 
            Calculates the biased standard deviation of the elements in the given data set,
            using the specified bias.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static double StandardDeviation(
	double[] data,
	BiasType type
)
Public Shared Function StandardDeviation ( 
	data As Double(),
	type As BiasType
) As Double
public:
static double StandardDeviation(
	array<double>^ data, 
	BiasType type
)
static member StandardDeviation : 
        data : float[] * 
        type : BiasType -> float Parameters
- data  Double
 - An array of doubles.
 - type  BiasType
 - Bias type.
 
Return Value
DoubleStandard deviation.
Exceptions
See Also