public sealed class SimpleAccumulator
SimpleAccumulator | Creates an empty accumulator. |
SimpleAccumulator(Accumulator) | Creates an empty accumulator from a full source. |
Count | Gets the total number of samples. |
Maximum | Returns the maximum value in the sample data. |
Mean | Gets the sample mean. |
Minimum | Returns the minimum value in the sample data. |
PopulationStandardDeviation | Gets the standard deviation from the full population. |
PopulationVariance | Gets the variance from the full population. |
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. |
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(SimpleAccumulator, SimpleAccumulator) | Combines two accumulators. |
Addition(SimpleAccumulator, Double) | Adds a sample to an accumulator. |