Accord.Statistics.Distributions.Univariate.LogLogisticDistribution.FromLocationShape C# (CSharp) Метод

FromLocationShape() публичный статический Метод

Creates a new LogLogisticDistribution using the location-shape parametrization. In this parametrization, Beta is taken as 1 / shape.
public static FromLocationShape ( double location, double shape ) : LogLogisticDistribution
location double The location parameter μ (mu) [taken as μ = α].
shape double The distribution's shape value σ (sigma) [taken as σ = β].
Результат LogLogisticDistribution
        public static LogLogisticDistribution FromLocationShape(double location, double shape)
        {
            return new LogLogisticDistribution(alpha: location, beta: 1 / shape);
        }
    }