Click or drag to resize

NormalEstimate Method

Estimates the 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 Normal 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

Normal
A normal distribution.
Remarks
MATLAB: normfit
See Also