BivariateSampleAdd(IReadOnlyListDouble, IReadOnlyListDouble) Method
Adds points from two lists to the sample.
Namespace: Meta.Numerics.StatisticsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public void Add(
IReadOnlyList<double> x,
IReadOnlyList<double> y
)
Public Sub Add (
x As IReadOnlyList(Of Double),
y As IReadOnlyList(Of Double)
)
public:
void Add(
IReadOnlyList<double>^ x,
IReadOnlyList<double>^ y
)
member Add :
x : IReadOnlyList<float> *
y : IReadOnlyList<float> -> unit
Parameters
- x IReadOnlyListDouble
- The x values of the data points.
- y IReadOnlyListDouble
- The y values of the data points.