Click or drag to resize

LogNormalWithMeanVariance Method

Constructs a log-normal distribution with the desired 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 LogNormal WithMeanVariance(
	double mean,
	double var,
	Random randomSource = null
)

Parameters

mean  Double
The mean of the log-normal distribution.
var  Double
The variance of the log-normal distribution.
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