Adds a set of observations and associated weights to the Summary object.

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

Syntax

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

Parameters

x
Type: array< System..::.Double >[]()[]
A double array of data observations to be added.
weight
Type: array< System..::.Double >[]()[]
A double array of weights associated with the observations.

See Also