Accord.Statistics.Distributions.Univariate.AndersonDarlingDistribution.AndersonDarlingDistribution C# (CSharp) Method

AndersonDarlingDistribution() public method

Creates a new Anderson-Darling distribution.
public AndersonDarlingDistribution ( AndersonDarlingDistributionType type, double samples ) : System
type AndersonDarlingDistributionType The type of the compared distribution.
samples double The number of samples.
return System
        public AndersonDarlingDistribution(AndersonDarlingDistributionType type, double samples)
        {
            this.DistributionType = type;
            this.NumberOfSamples = samples;
        }