Click or drag to resize

NormalWithMeanPrecision Method

Constructs a normal distribution from a mean and precision.

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

Parameters

mean  Double
The mean (μ) of the normal distribution.
precision  Double
The precision of the normal distribution.
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