LogNormalWithMuSigma Method |
Constructs a log-normal distribution with the desired mu and sigma parameters.
Namespace: Altaxo.Calc.DistributionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static LogNormal WithMuSigma(
double mu,
double sigma,
Random randomSource = null
)
Parameters
- mu Double
- The log-scale (μ) of the distribution.
- sigma Double
- The shape (σ) of the distribution. Range: σ ≥ 0.
- randomSource Random (Optional)
- The random number generator which is used to draw random samples. Optional, can be null.
Return Value
LogNormalA log-normal distribution.
See Also