Click or drag to resize

LogNormalEstimate Method

Estimates the log-normal distribution parameters from sample data with maximum-likelihood.

Namespace: Altaxo.Calc.Distributions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

LogNormal
A log-normal distribution.
Remarks
MATLAB: lognfit
See Also