LognormalDistribution Constructor

DefinitionPermalink

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0

Overload ListPermalink

LognormalDistribution(Vector<Double>) Estimates the parameters of the distribution of a variable assuming it follows a lognormal distribution.
LognormalDistribution(Double, Double) Constructs a new LognormalDistribution object with the specified location and scale parameters.

LognormalDistribution(Vector<Double>)Permalink

Estimates the parameters of the distribution of a variable assuming it follows a lognormal distribution.
C#
public LognormalDistribution(
	Vector<double> variable
)

Parameters

variable  Vector<Double>
A vector.

Return Value

The LognormalDistribution that best matches the distribution of variable.

RemarksPermalink

Use this constructor to create a LognormalDistribution whose parameters are estimated from variable. By default, the maximum likelihood estimate is returned, if it is available.

ExceptionsPermalink

ArgumentNullException

variable is null.

LognormalDistribution(Double, Double)Permalink

Constructs a new LognormalDistribution object with the specified location and scale parameters.
C#
public LognormalDistribution(
	double mean,
	double standardDeviation
)

Parameters

mean  Double
Mean of the underlying normal distribution.
standardDeviation  Double
Standard deviation of the underlying normal distribution.

ExceptionsPermalink

ArgumentOutOfRangeException

standardDeviation is less than or equal to zero.

See AlsoPermalink