Click or drag to resize

TwoSampleFTestUpdate(DoubleVector, DoubleVector) 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(
	DoubleVector data1,
	DoubleVector data2
)

Parameters

data1  DoubleVector
A vector of observed values for the first sample.
data2  DoubleVector
A vector of observed values for the second sample.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if either sample has length of zero after removing missing values.
Remarks
New sample standard deviations and sample sizes are computed from the given data vectors. Missing values are ignored.
See Also