Class InverseGaussianMLEstimator
- java.lang.Object
-
- elki.math.statistics.distribution.estimator.InverseGaussianMLEstimator
-
- All Implemented Interfaces:
DistributionEstimator<InverseGaussianDistribution>
public class InverseGaussianMLEstimator extends java.lang.Object implements DistributionEstimator<InverseGaussianDistribution>
Estimate parameter of the inverse Gaussian (Wald) distribution.- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InverseGaussianMLEstimator.Par
Parameterization class.
-
Field Summary
Fields Modifier and Type Field Description static InverseGaussianMLEstimator
STATIC
Static instance.
-
Constructor Summary
Constructors Constructor Description InverseGaussianMLEstimator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <A> InverseGaussianDistribution
estimate(A data, NumberArrayAdapter<?,A> adapter)
General form of the parameter estimationjava.lang.Class<? super InverseGaussianDistribution>
getDistributionClass()
Get the class that is produced by the estimator.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface elki.math.statistics.distribution.estimator.DistributionEstimator
estimate
-
-
-
-
Field Detail
-
STATIC
public static final InverseGaussianMLEstimator STATIC
Static instance.
-
-
Method Detail
-
estimate
public <A> InverseGaussianDistribution estimate(A data, NumberArrayAdapter<?,A> adapter)
Description copied from interface:DistributionEstimator
General form of the parameter estimation- Specified by:
estimate
in interfaceDistributionEstimator<InverseGaussianDistribution>
- Parameters:
data
- Data setadapter
- Number array adapter- Returns:
- Estimated distribution
-
getDistributionClass
public java.lang.Class<? super InverseGaussianDistribution> getDistributionClass()
Description copied from interface:DistributionEstimator
Get the class that is produced by the estimator.- Specified by:
getDistributionClass
in interfaceDistributionEstimator<InverseGaussianDistribution>
- Returns:
- Distribution class
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-