Class UniformLMMEstimator
- java.lang.Object
-
- elki.math.statistics.distribution.estimator.UniformLMMEstimator
-
- All Implemented Interfaces:
DistributionEstimator<UniformDistribution>,LMMDistributionEstimator<UniformDistribution>
public class UniformLMMEstimator extends java.lang.Object implements LMMDistributionEstimator<UniformDistribution>
Estimate the parameters of a normal distribution using the method of L-Moments (LMM).- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUniformLMMEstimator.ParParameterization class.
-
Field Summary
Fields Modifier and Type Field Description static UniformLMMEstimatorSTATICStatic instance
-
Constructor Summary
Constructors Modifier Constructor Description privateUniformLMMEstimator()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UniformDistributionestimateFromLMoments(double[] xmom)Estimate from the L-Moments.java.lang.Class<? super UniformDistribution>getDistributionClass()Get the class that is produced by the estimator.intgetNumMoments()The number of moments needed.java.lang.StringtoString()-
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
-
Methods inherited from interface elki.math.statistics.distribution.estimator.LMMDistributionEstimator
estimate
-
-
-
-
Field Detail
-
STATIC
public static final UniformLMMEstimator STATIC
Static instance
-
-
Method Detail
-
getNumMoments
public int getNumMoments()
Description copied from interface:LMMDistributionEstimatorThe number of moments needed.- Specified by:
getNumMomentsin interfaceLMMDistributionEstimator<UniformDistribution>- Returns:
- Moments needed.
-
estimateFromLMoments
public UniformDistribution estimateFromLMoments(double[] xmom)
Description copied from interface:LMMDistributionEstimatorEstimate from the L-Moments.- Specified by:
estimateFromLMomentsin interfaceLMMDistributionEstimator<UniformDistribution>- Parameters:
xmom- L-Moments- Returns:
- Distribution
-
getDistributionClass
public java.lang.Class<? super UniformDistribution> getDistributionClass()
Description copied from interface:DistributionEstimatorGet the class that is produced by the estimator.- Specified by:
getDistributionClassin interfaceDistributionEstimator<UniformDistribution>- Returns:
- Distribution class
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-