Estimates the log-normal distribution parameters from sample data with maximum-likelihood.
Namespace: Altaxo.Calc.DistributionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static LogNormal Estimate(
IEnumerable<double> samples,
Random randomSource = null
)
Parameters
- samples IEnumerableDouble
- The samples to estimate the distribution parameters from.
- randomSource Random (Optional)
- The random number generator which is used to draw random samples. Optional, can be null.
Return Value
LogNormalA log-normal distribution.
Remarks MATLAB: lognfit
See Also