Class MixtureMultivariateRealDistribution<T extends MultivariateRealDistribution>

java.lang.Object
org.apache.commons.math3.distribution.AbstractMultivariateRealDistribution
org.apache.commons.math3.distribution.MixtureMultivariateRealDistribution<T>
Type Parameters:
T - Type of the mixture components.
All Implemented Interfaces:
MultivariateRealDistribution
Direct Known Subclasses:
MixtureMultivariateNormalDistribution

Class for representing mixture model distributions.
Since:
3.1
  • Constructor Details

  • Method Details

    • density

      public double density(double[] values)
      Returns the probability density function (PDF) of this distribution evaluated at the specified point x. In general, the PDF is the derivative of the cumulative distribution function. If the derivative does not exist at x, then an appropriate replacement should be returned, e.g. Double.POSITIVE_INFINITY, Double.NaN, or the limit inferior or limit superior of the difference quotient.
      Parameters:
      values - Point at which the PDF is evaluated.
      Returns:
      the value of the probability density function at point x.
    • sample

      public double[] sample()
      Generates a random value vector sampled from this distribution.
      Specified by:
      sample in interface MultivariateRealDistribution
      Specified by:
      sample in class AbstractMultivariateRealDistribution
      Returns:
      a random value vector.
    • reseedRandomGenerator

      public void reseedRandomGenerator(long seed)
      Reseeds the random generator used to generate samples.
      Specified by:
      reseedRandomGenerator in interface MultivariateRealDistribution
      Overrides:
      reseedRandomGenerator in class AbstractMultivariateRealDistribution
      Parameters:
      seed - Seed with which to initialize the random number generator.
    • getComponents

      Gets the distributions that make up the mixture model.
      Returns:
      the component distributions and associated weights.