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

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

Syntax

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

Parameters

cdf
Type: Imsl.Stat..::.ICdfFunction
is the cdf function, F(x). If must be non-decreasing and its value must be in [0, 1].
x
Type: array< System..::.Double >[]()[]
is a double array containing the observations.

See Also