Log Logistic Distribution Constructor
Definition
Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Log | Constructs a new LogLogisticDistribution with the specified scale and shape parameters. |
Log | 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.
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.
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. |