Click or drag to resize

NormalWithMeanStdDev Method

Constructs a normal distribution from a mean and standard deviation.

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

Parameters

mean  Double
The mean (μ) of the normal distribution.
stddev  Double
The standard deviation (σ) of the normal distribution. Range: σ ≥ 0.
randomSource  Random  (Optional)
The random number generator which is used to draw random samples. Optional, can be null.

Return Value

Normal
a normal distribution.
See Also