Adds a data point with a specified weight.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public void Update(
	double[] x,
	double f,
	double w
)
Visual Basic (Declaration)
Public Sub Update ( _
	x As Double(), _
	f As Double, _
	w As Double _
)
Visual C++
public:
void Update(
	array<double>^ x, 
	double f, 
	double w
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array containing the locations of the data point.
f
Type: System..::.Double
A double containing the function value at the data point.
w
Type: System..::.Double
A double containing the weight of this data point.

See Also