Constructs a two sample Kolmogorov-Smirnov goodness-of-fit test.

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

Syntax

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

Parameters

x
Type: array< System..::.Double >[]()[]
Array containing the observations from the first sample.
y
Type: array< System..::.Double >[]()[]
Array containing the observations from the second sample.

See Also