Adds a data point to the sample.

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void Add(
	double x,
	double y
)
Public Sub Add ( _
	x As Double, _
	y As Double _
)
public:
void Add(
	double x, 
	double y
)
member Add : 
        x : float * 
        y : float -> unit 

Parameters

x
Double
The x-value of the data point.
y
Double
The y-value of the data point.

See Also