Click or drag to resize

TwoSamplePairedTTestUpdate(Double, Double) Method

Updates the test statistic with new sample data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Update(
	double[] data1,
	double[] data2
)

Parameters

data1  Double
An array of observed values.
data2  Double
An array of observed values.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the given data contains zero valid pairs.
Remarks
The mean of the differences between paired observations, the standard deviation of the differences, and the sample size are computed from the given arrays. Paired observations where either value is missing are ignored.
See Also