Accord.Statistics.Distributions.Univariate.SkewNormalDistribution.initialize C# (CSharp) Method

initialize() private method

private initialize ( double location, double scale, double shape ) : void
location double
scale double
shape double
return void
        private void initialize(double location, double scale, double shape)
        {
            this.ksi = location;
            this.omega = scale;
            this.alpha = shape;

            // Compute derived values
            this.delta = shape / Math.Sqrt(1 + shape * shape);
        }