Click or drag to resize

TwoSampleKSTest(Double, Double) Constructor

Constructs a TwoSampleKSTest from the given samples.

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

Parameters

data1  Double
The first sample.
data2  Double
The second sample.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data1 or data2 has length of zero, after removing missing values.
Remarks
The alpha level is set to the current value specified by the static DefaultAlpha property. Missing values are ignored.
See Also