Enhanced C#
Language of your choice: library documentation
Public fields | Public Member Functions | Static Public Member Functions | List of all members
Loyc.Utilities.Statistic Class Reference

A lightweight class to help you compute the minimum, maximum, average and standard deviation of a set of values. Call Clear(), then Add(each value); you can compute the average and standard deviation at any time by calling Avg() and StdDeviation(). More...


Source file:

Remarks

A lightweight class to help you compute the minimum, maximum, average and standard deviation of a set of values. Call Clear(), then Add(each value); you can compute the average and standard deviation at any time by calling Avg() and StdDeviation().

Public fields

double Min
 
double Max
 
double SumTotal
 
double SumOfSquares
 
int Count
 

Public Member Functions

void Clear ()
 
void Add (double nextValue)
 
double Avg ()
 
double Variance ()
 
double StdDeviation ()
 
Statistic Clone ()
 

Static Public Member Functions

static Statistic Merge (params Statistic[] data)