Browse Source

DescriptiveStatistics: doc variance/stdev unbiased (N+1) #43

pull/47/head v2.2.0
Christoph Ruegg 14 years ago
parent
commit
1456e7508c
  1. 4
      src/Numerics/Statistics/DescriptiveStatistics.cs

4
src/Numerics/Statistics/DescriptiveStatistics.cs

@ -135,13 +135,13 @@ namespace MathNet.Numerics.Statistics
public double Mean { get; private set; }
/// <summary>
/// Gets the sample variance.
/// Gets the unbiased population variance estimator (on a dataset of size N will use an N-1 normalizer).
/// </summary>
/// <value>The sample variance.</value>
public double Variance { get; private set; }
/// <summary>
/// Gets the sample standard deviation.
/// Gets the unbiased population standard deviation (on a dataset of size N will use an N-1 normalizer).
/// </summary>
/// <value>The sample standard deviation.</value>
public double StandardDeviation { get; private set; }

Loading…
Cancel
Save