OneSampleKolmogorovSmirnovTest.DistributionFunction Property

Gets or sets the (cumulative) distribution function of the distribution being tested.

Definition

Namespace: Numerics.NET.Statistics.Tests
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Func<double, double> DistributionFunction { get; set; }

Property Value

Func<Double, Double>
A delegate that represents a function of one variable delegate.

Remarks

If the distribution function comes from a known probability distribution, you can set the distribution function using the SetDistribution(ContinuousDistribution) method.

Exceptions

ArgumentNullException

The new value is null.

See Also