Declaration
public void AddObservations(
int count,
double mean,
double min,
double max,
double variance
)
Summary
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.
Parameters
int | count | Number of observations added. |
double | mean | The sample mean of the added observations. |
double | min | The minimum of the added observations. |
double | max | The maximum of the added observations. |
double | variance | The sample variance of the added observations. |