Click or drag to resize
Accord.NET (logo)

LogLogisticDistributionFromLocationShape Method

Creates a new LogLogisticDistribution using the location-shape parametrization. In this parametrization, Beta is taken as 1 / shape.

Namespace:  Accord.Statistics.Distributions.Univariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public static LogLogisticDistribution FromLocationShape(
	double location,
	double shape
)
Request Example View Source

Parameters

location
Type: SystemDouble
The location parameter μ (mu) [taken as μ = α].
shape
Type: SystemDouble
The distribution's shape value σ (sigma) [taken as σ = β].

Return Value

Type: LogLogisticDistribution
A LogLogisticDistribution with α = μ and β = 1/σ.
See Also