Click or drag to resize

LogNormalSamples(Double, Double) Method

Generates a sequence of samples from the log-normal distribution using the Box-Muller algorithm.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<double> Samples(
	double mu,
	double sigma
)

Parameters

mu  Double
The log-scale (μ) of the distribution.
sigma  Double
The shape (σ) of the distribution. Range: σ ≥ 0.

Return Value

IEnumerableDouble
a sequence of samples from the distribution.
See Also