Click or drag to resize

OneSampleKSTest(Int32, ProbabilityDistribution, Double) Constructor

Constructs a OneSampleKSTest from the given sample data and specified distribution.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public OneSampleKSTest(
	int[] data,
	ProbabilityDistribution dist,
	double alpha
)

Parameters

data  Int32
The sample data.
dist  ProbabilityDistribution
The hypothesized distribution.
alpha  Double
The accepted probability of falsely rejecting the null hypothesis.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data has length of zero.
Remarks
The distribution of data is compared to the hypothesized distribution defined by dist.CDF.
See Also