Uses the method of running sums to calculate mean, sample standard deviation, and standard deviation of a data set.
See wikipedia article "Standard deviation".
Constructor | Description |
Full Usage:
QuickStatistics()
|
|
Instance member | Description |
Full Usage:
this.Add
Parameters:
float
-
The value of the data point.
|
Adds a data point to the statistics.
|
|
Adds data points to the statistics.
|
Full Usage:
this.Clear
|
Initializes the statistics. |
Full Usage:
this.Max
Returns: float
|
Returns the maximum of the data values.
|
Full Usage:
this.Mean
Returns: float
|
Returns the mean (average) of the data values.
|
Full Usage:
this.Min
Returns: float
|
Returns the minimum of the data values.
|
Full Usage:
this.N
Returns: float
|
Returns the number of data values that were added.
|
Full Usage:
this.SampleStandardDeviation
Returns: float
|
Returns the sample standard deviation: square root of the error sum of squares divided by (N-1).
|
Full Usage:
this.StandardDeviation
Returns: float
|
Returns the standard deviation: square root of the error sum of squares divided by N.
|