Click or drag to resize

BivariateSampleAdd Method (IReadOnlyListDouble, IReadOnlyListDouble)

Adds points from two lists to the sample.

Namespace:  Meta.Numerics.Statistics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public void Add(
	IReadOnlyList<double> x,
	IReadOnlyList<double> y
)

Parameters

x
Type: System.Collections.GenericIReadOnlyListDouble
The x values of the data points.
y
Type: System.Collections.GenericIReadOnlyListDouble
The y values of the data points.
Exceptions
ExceptionCondition
DimensionMismatchExceptionThe lengths of the two lists are not equal.
See Also