diff --git a/src/Numerics/Statistics/DescriptiveStatistics.cs b/src/Numerics/Statistics/DescriptiveStatistics.cs index 609bf066..d534d388 100644 --- a/src/Numerics/Statistics/DescriptiveStatistics.cs +++ b/src/Numerics/Statistics/DescriptiveStatistics.cs @@ -135,13 +135,13 @@ namespace MathNet.Numerics.Statistics public double Mean { get; private set; } /// - /// Gets the sample variance. + /// Gets the unbiased population variance estimator (on a dataset of size N will use an N-1 normalizer). /// /// The sample variance. public double Variance { get; private set; } /// - /// Gets the sample standard deviation. + /// Gets the unbiased population standard deviation (on a dataset of size N will use an N-1 normalizer). /// /// The sample standard deviation. public double StandardDeviation { get; private set; }