Updates this test with new sample data.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public void Update(
	DoubleVector data1,
	DoubleVector data2
)
Visual Basic (Declaration)
Public Sub Update ( _
	data1 As DoubleVector, _
	data2 As DoubleVector _
)
Visual C++
public:
void Update(
	DoubleVector^ data1, 
	DoubleVector^ data2
)

Parameters

data1
Type: CenterSpace.NMath.Core..::.DoubleVector
The first sample.
data2
Type: CenterSpace.NMath.Core..::.DoubleVector
The second sample.

Remarks

Missing values are ignored.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if data1 or data2 has length of zero, after removing missing values.

See Also