Click or drag to resize

LogNormalWithMuSigma Method

Constructs a log-normal distribution with the desired mu and sigma parameters.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static LogNormal WithMuSigma(
	double mu,
	double sigma,
	Random randomSource = null
)

Parameters

mu  Double
The log-scale (μ) of the distribution.
sigma  Double
The shape (σ) of the distribution. Range: σ ≥ 0.
randomSource  Random  (Optional)
The random number generator which is used to draw random samples. Optional, can be null.

Return Value

LogNormal
A log-normal distribution.
See Also