LogLogisticDistribution Constructor

Definition

Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

LogLogisticDistribution(Double, Double) Constructs a new LogLogisticDistribution with the specified scale and shape parameters.
LogLogisticDistribution(Double, Double, Double) Constructs a new LogLogisticDistribution with the specified location, scale, and shape parameters.

LogLogisticDistribution(Double, Double)

Constructs a new LogLogisticDistribution with the specified scale and shape parameters.
C#
public LogLogisticDistribution(
	double scale,
	double shape
)

Parameters

scale  Double
The scale parameter of the distribution. Must be greater than zero.
shape  Double
The shape parameter of the distribution.

Exceptions

ArgumentOutOfRangeException

scale is less than or equal to zero.

-or-

shape is less than or equal to zero.

LogLogisticDistribution(Double, Double, Double)

Constructs a new LogLogisticDistribution with the specified location, scale, and shape parameters.
C#
public LogLogisticDistribution(
	double location,
	double scale,
	double shape
)

Parameters

location  Double
The location parameter of the distribution.
scale  Double
The scale parameter of the distribution. Must be greater than zero.
shape  Double
The shape parameter of the distribution.

Exceptions

ArgumentOutOfRangeException

scale is less than or equal to zero.

-or-

shape is less than or equal to zero.

See Also