Enum Class MaximumLikelihoodEstimatorMethod

java.lang.Object
java.lang.Enum<MaximumLikelihoodEstimatorMethod>
com.irurueta.numerical.MaximumLikelihoodEstimatorMethod
All Implemented Interfaces:
Serializable, Comparable<MaximumLikelihoodEstimatorMethod>, Constable

public enum MaximumLikelihoodEstimatorMethod extends Enum<MaximumLikelihoodEstimatorMethod>
Types of maximum likelihood estimation to determine the real value corresponding to a set of values.
  • Enum Constant Details

    • HISTOGRAM_MAXIMUM_LIKELIHOOD_ESTIMATOR

      public static final MaximumLikelihoodEstimatorMethod HISTOGRAM_MAXIMUM_LIKELIHOOD_ESTIMATOR
      MLE method based on a histogram of all samples.
    • ACCURATE_MAXIMUM_LIKELIHOOD_ESTIMATOR

      public static final MaximumLikelihoodEstimatorMethod ACCURATE_MAXIMUM_LIKELIHOOD_ESTIMATOR
      MLE method that refines the histogram method by using Gaussian interpolation.
  • Constructor Details

    • MaximumLikelihoodEstimatorMethod

      private MaximumLikelihoodEstimatorMethod()
  • Method Details

    • values

      public static MaximumLikelihoodEstimatorMethod[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MaximumLikelihoodEstimatorMethod valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null