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

GeneralizedNormalDistribution() public method

Constructs a Generalized Normal distribution with the given parameters.
public GeneralizedNormalDistribution ( [ location, [ scale, [ shape ) : System
location [ The location parameter μ.
scale [ The scale parameter α.
shape [ The shape parameter β.
return System
        public GeneralizedNormalDistribution([Real] double location, 
            [Positive] double scale, [Positive] double shape)
        {
            initialize(location, scale, shape);
        }