Normal(Double, Double, Random) Constructor |
Initializes a new instance of the Normal class with a particular mean and standard deviation. The distribution will
be initialized with the default random number generator.
Namespace: Altaxo.Calc.DistributionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Normal(
double mean,
double stddev,
Random randomSource
)
Parameters
- mean Double
- The mean (μ) of the normal distribution.
- stddev Double
- The standard deviation (σ) of the normal distribution. Range: σ ≥ 0.
- randomSource Random
- The random number generator which is used to draw random samples.
See Also