Click or drag to resize

LogisticWithMeanVariance Method

Constructs a logistic distribution from a mean and variance.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Logistic WithMeanVariance(
	double mean,
	double var,
	Random randomSource = null
)

Parameters

mean  Double
The mean (μ) of the logistic distribution.
var  Double
The variance (σ^2) of the logistic distribution. Range: (σ^2) > 0.
randomSource  Random  (Optional)
The random number generator which is used to draw random samples. Optional, can be null.

Return Value

Logistic
A logistic distribution.
See Also