Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Class: RT.KitchenSink.ValueStat

Summary

Incrementally accumulates basic statistics about a value, one observation at a time, making current estimates of the underlying distribution available at every point.

Constructors

Constructor.

Instance methods

void
AddObservation(double value)
Adds a new observation, updating all statistics as appropriate.
void
AddObservations(int count, double mean, double min, double max, double variance)
Adds a number of observations, updating all statistics as appropriate. The nature of the statistics collected by the class enable this operation by only having similar statistics about the observations being added.
voidRemoves all observations and resets the class to its initial state.

Instance properties

doubleGets the largest value observed so far.
doubleGets the sample mean.
doubleGets the smallest value observed so far.
intGets the total number of observations so far.
doubleGets the current estimate of the population standard deviation.
doubleGets the current estimate of the population standard deviation using an unbiased estimator.
doubleGets the current estimate of the population variance.
doubleGets the current estimate of the population variance using an unbiased estimator.