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

intcountNumber of observations added.
doublemeanThe sample mean of the added observations.
doubleminThe minimum of the added observations.
doublemaxThe maximum of the added observations.
doublevarianceThe sample variance of the added observations.