Click or drag to resize

LogNormalSample(Double, Double) Method

Generates a sample 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 double Sample(
	double mu,
	double sigma
)

Parameters

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

Return Value

Double
a sample from the distribution.
See Also