public sealed class Accumulator
Accumulator | Creates an empty accumulator. |
Accumulator(Double) | Creates an accumulator from an array of samples. |
Accumulator(Int32) | Creates an accumulator from an array of integer samples. |
Count | Gets the total number of samples. |
Hint | Gets a short hint string describing the contents of this accumulator. |
Kurtosis | Gets the unbiased population kurtosis. |
Maximum | Returns the maximum value in the sample data. |
Mean | Gets the sample mean. |
Minimum | Returns the minimum value in the sample data. |
PopulationKurtosis | Gets the kurtosis from the full population. |
PopulationSkewness | Get the skewness from the full population. |
PopulationStandardDeviation | Gets the standard deviation from the full population. |
PopulationVariance | Gets the variance from the full population. |
Skewness | Gets the unbiased population skewness. |
StandardDeviation | Gets the unbiased standard deviation. |
Variance | Gets the unbiased variance. |
Add(Double) | Adds a sample to this accumulator. |
Add(Double) | Adds an array of samples to this accumulator. |
Add(Double*, Int32) | Adds samples from a memory zone to this accumulator. |
Add(Int32*, Int32) | Adds samples from a memory zone to this accumulator. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
ToString | Gets a textual representation of the accumulator. (Overrides ObjectToString) |
Addition(Accumulator, Accumulator) | Combines two accumulators. |
Addition(Accumulator, Double) | Adds a sample to an accumulator. |