DistributionType - Type of Distribution in the mixture@PublicationReference(author="Wikipedia", title="Mixture Model", type=WebPage, year=2009, url="http://en.wikipedia.org/wiki/Mixture_model") public class MultivariateMixtureDensityModel<DistributionType extends ClosedFormComputableDistribution<Vector>> extends LinearMixtureModel<Vector,DistributionType> implements ClosedFormComputableDistribution<Vector>
| Modifier and Type | Class and Description |
|---|---|
static class |
MultivariateMixtureDensityModel.PDF<DistributionType extends ClosedFormComputableDistribution<Vector>>
PDF of the MultivariateMixtureDensityModel
|
distributions, priorWeights| Constructor and Description |
|---|
MultivariateMixtureDensityModel(java.util.Collection<? extends DistributionType> distributions)
Creates a new instance of MultivariateMixtureDensityModel
|
MultivariateMixtureDensityModel(java.util.Collection<? extends DistributionType> distributions,
double[] priorWeights)
Creates a new instance of MultivariateMixtureDensityModel
|
MultivariateMixtureDensityModel(MultivariateMixtureDensityModel<? extends DistributionType> other)
Copy Constructor
|
| Modifier and Type | Method and Description |
|---|---|
MultivariateMixtureDensityModel<DistributionType> |
clone()
This makes public the clone method on the
Object class and
removes the exception that it throws. |
void |
convertFromVector(Vector parameters)
Converts the object from a Vector of parameters.
|
Vector |
convertToVector()
Converts the object to a vector.
|
Vector |
getMean()
Gets the arithmetic mean, or "first central moment" or "expectation",
of the distribution.
|
MultivariateMixtureDensityModel.PDF<DistributionType> |
getProbabilityFunction()
Gets the distribution function associated with this Distribution,
either the PDF or PMF.
|
getDistributionCount, getDistributions, getPriorWeights, getPriorWeightSum, sample, sampleInto, setDistributions, setPriorWeights, toStringsampleequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitsample, sample, sampleIntopublic MultivariateMixtureDensityModel(java.util.Collection<? extends DistributionType> distributions)
distributions - Underlying distributions from which we samplepublic MultivariateMixtureDensityModel(java.util.Collection<? extends DistributionType> distributions, double[] priorWeights)
distributions - Underlying distributions from which we samplepriorWeights - Weights proportionate by which the distributions are sampledpublic MultivariateMixtureDensityModel(MultivariateMixtureDensityModel<? extends DistributionType> other)
other - MultivariateMixtureDensityModel to copypublic MultivariateMixtureDensityModel<DistributionType> clone()
AbstractCloneableSerializableObject class and
removes the exception that it throws. Its default behavior is to
automatically create a clone of the exact type of object that the
clone is called on and to copy all primitives but to keep all references,
which means it is a shallow copy.
Extensions of this class may want to override this method (but call
super.clone() to implement a "smart copy". That is, to target
the most common use case for creating a copy of the object. Because of
the default behavior being a shallow copy, extending classes only need
to handle fields that need to have a deeper copy (or those that need to
be reset). Some of the methods in ObjectUtil may be helpful in
implementing a custom clone method.
Note: The contract of this method is that you must use
super.clone() as the basis for your implementation.clone in interface Vectorizableclone in interface CloneableSerializableclone in class LinearMixtureModel<Vector,DistributionType extends ClosedFormComputableDistribution<Vector>>public Vector getMean()
DistributionWithMeangetMean in interface DistributionWithMean<Vector>public Vector convertToVector()
VectorizableconvertToVector in interface Vectorizablepublic void convertFromVector(Vector parameters)
VectorizableconvertFromVector in interface Vectorizableparameters - The parameters to incorporate.public MultivariateMixtureDensityModel.PDF<DistributionType> getProbabilityFunction()
ComputableDistributiongetProbabilityFunction in interface ComputableDistribution<Vector>