Class Mixture.Component

  • Enclosing class:
    Mixture

    public static class Mixture.Component
    extends java.lang.Object
    A component in the mixture distribution is defined by a distribution and its weight in the mixture.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      Distribution distribution
      The distribution of component.
      double priori
      The priori probability of component.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • distribution

        public Distribution distribution
        The distribution of component.
      • priori

        public double priori
        The priori probability of component.
    • Constructor Detail

      • Component

        public Component()
      • Component

        public Component​(double priori,
                         Distribution distribution)