Adds a new data point to the set.

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(
	T x,
	double y,
	double dy
)
Public Sub Add ( _
	x As T, _
	y As Double, _
	dy As Double _
)
public:
void Add(
	T x, 
	double y, 
	double dy
)
member Add : 
        x : 'T * 
        y : float * 
        dy : float -> unit 

Parameters

x
T
The value of the ordinate (independent variable).
y
Double
The value of the abcissa (dependent variable).
dy
Double
The uncertainty of the abcissa (dependent variable).

See Also