Adds a set of data points with user-specified weights.

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,2>^ x, 
	array<double>^ f, 
	array<double>^ w
)

Parameters

x
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix of size n by nDim containing the locations of the data points for each dimension.
f
Type: array< System..::.Double >[]()[]
A double array containing the function values at the data points.
w
Type: array< System..::.Double >[]()[]
A double array containing the weights associated with the data points.

See Also