Click or drag to resize

InverseGaussianEstimate Method

Estimates the Inverse Gaussian 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 InverseGaussian 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

InverseGaussian
An Inverse Gaussian distribution.
See Also