Quick |
public class QuickStatistics
The QuickStatistics type exposes the following members.
| Name | Description | |
|---|---|---|
| QuickStatistics | Initializes a new instance of the QuickStatistics class |
| Name | Description | |
|---|---|---|
| Max | Gets the maximum of the data values. | |
| Mean | Gets the arithmetic mean (average) of the data values. | |
| Min | Gets the minimum of the data values. | |
| N | Gets the number of data values that were added. | |
| PopulationStandardDeviation | Gets the population standard deviation: square root of the error sum of squares divided by N. | |
| PopulationVariance | Gets the population variance: error sum of squares divided by N. | |
| SampleStandardDeviation | Gets the sample standard deviation: square root of the error sum of squares divided by (N-1). | |
| SampleVariance | Gets the sample variance: error sum of squares divided by N-1. | |
| StandardDeviation | Gets the sample standard deviation: square root of the error sum of squares divided by (N-1). | |
| Variance | Gets the sample variance: error sum of squares divided by N-1. |
| Name | Description | |
|---|---|---|
| Add | Adds a data point to the statistics. | |
| AddRange(IEnumerableDouble) | Adds a sequence of data points to the statistics. | |
| AddRange(ReadOnlySpanDouble) | Adds a span of data points to the statistics. | |
| Clear | Resets the statistics to their initial state. | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |