WebCab Probability and Statistics for .NET v3.3 Demo

CorrelationStateful.AddValues Method 

Adds a new set of (ordered) pairs of data to the data set.

public void AddValues(
   double[] xValues,
   double[] yValues
);

Parameters

xValues
An array which are the ordered elements which make up the first variable of the set of (ordered) pairs which is to be added to the data set.
yValues
An array which are the ordered elements which make up the second variable of the set of (ordered) pairs which is to be added to the data set.

Remarks

Note:

  1. The ith pair of numbers which will be added to the data set will be (xValues[i],yValues[i]).
  2. This function will add, one by one, pairs of numbers formed with one `X' value and one `Y' value.

See Also

CorrelationStateful Class | WebCab.Libraries.Statistics.Correlation Namespace