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
)
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
- Type: System.Collections.GenericIReadOnlyListDouble
The x values of the data points. - y
- Type: System.Collections.GenericIReadOnlyListDouble
The y values of the data points.
Exceptions See Also