Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: void AddObservations(int, double, double, double, double)

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

intcount Number of observations added.
doublemean The sample mean of the added observations.
doublemin The minimum of the added observations.
doublemax The maximum of the added observations.
doublevariance The sample variance of the added observations.