A mixture of a fixed type of distributions. More...
#include <vpdl_mixture_of.h>

Public Types | |
| typedef dist_t::field_type | field_type |
| the data type to represent a point in the field. More... | |
| typedef dist_t | component_type |
| define the component type. More... | |
| typedef dist_t::field_type | F |
| the data type to represent a point in the field. More... | |
| typedef vpdt_field_traits< field_type >::scalar_type | T |
| define the scalar type (normally specified by template parameter T). More... | |
| typedef vpdt_field_traits< field_type >::vector_type | vector |
| define the vector type. More... | |
| typedef vpdt_field_traits< field_type >::matrix_type | matrix |
| the data type used for matrices. More... | |
Public Member Functions | |
| vpdl_mixture_of () | |
| virtual | ~vpdl_mixture_of () |
| virtual vpdl_distribution< T, n > * | clone () const |
| Create a copy on the heap and return base class pointer. More... | |
| virtual unsigned int | dimension () const |
| Return the run time dimension. More... | |
| unsigned int | num_components () const |
| Return the number of components in the mixture. More... | |
| const dist_t & | distribution (unsigned int index) const |
| Access (const) a component distribution of the mixture. More... | |
| dist_t & | distribution (unsigned int index) |
| Access a component distribution of the mixture. More... | |
| T | weight (unsigned int index) const |
| Return the weight of a component in the mixture. More... | |
| void | set_weight (unsigned int index, const T &w) |
| Set the weight of a component in the mixture. More... | |
| bool | insert (const dist_t &d, const T &wght=T(0)) |
| Insert a new component at the end of the vector. More... | |
| bool | remove_last () |
| Remove the last component in the vector. More... | |
| T | density (const vector &pt) const |
| Compute the unnormalized density at this point. More... | |
| T | prob_density (const vector &pt) const |
| Compute the probability density at this point. More... | |
| virtual T | gradient_density (const vector &pt, vector &g) const |
| Compute the gradient of the unnormalized density at a point. More... | |
| T | box_prob (const vector &min_pt, const vector &max_pt) const |
| The probability integrated over a box. More... | |
| virtual T | cumulative_prob (const vector &pt) const |
| Evaluate the cumulative distribution function at a point. More... | |
| virtual void | compute_mean (vector &mean) const |
| Compute the mean of the distribution. More... | |
| virtual void | compute_covar (matrix &covar) const |
| Compute the covariance of the distribution. More... | |
| virtual T | norm_const () const |
| The normalization constant for the density. More... | |
| void | normalize_weights () |
| Normalize the weights of the components to add to 1. More... | |
| void | sort () |
| Sort the components in order of decreasing weight. More... | |
| void | sort (unsigned int idx1, unsigned int idx2) |
| Sort the components in the range idx1 to idx2 in order of decreasing weight. More... | |
| template<class comp_type_ > | |
| void | sort (comp_type_ comp) |
| Sort the components using any StrictWeakOrdering function. More... | |
| template<class comp_type_ > | |
| void | sort (comp_type_ comp, unsigned int idx1, unsigned int idx2) |
| Sort the components in the range idx1 to idx2 using any StrictWeakOrdering function. More... | |
| virtual vpdt_dist_traits< dist_t >::scalar_type | density (const vector &pt) const=0 |
| Evaluate the unnormalized density at a point. More... | |
| virtual vpdt_dist_traits< dist_t >::scalar_type | prob_density (const vector &pt) const |
| Evaluate the probability density at a point. More... | |
| virtual vpdt_dist_traits< dist_t >::scalar_type | log_prob_density (const vector &pt) const |
| Evaluate the log probability density at a point. More... | |
| virtual vpdt_dist_traits< dist_t >::scalar_type | gradient_density (const vector &pt, vector &g) const=0 |
| Compute the gradient of the unnormalized density at a point. More... | |
| virtual vpdt_dist_traits< dist_t >::scalar_type | cumulative_prob (const vector &pt) const=0 |
| Evaluate the cumulative distribution function at a point. More... | |
| virtual vector | inverse_cdf (const vpdt_dist_traits< dist_t >::scalar_type &p) const |
| Compute the inverse of the cumulative_prob() function. More... | |
| virtual vpdt_dist_traits< dist_t >::scalar_type | box_prob (const vector &min_pt, const vector &max_pt) const |
| The probability of being in an axis-aligned box. More... | |
| virtual void | compute_mean (vector &mean) const=0 |
| Compute the mean of the distribution. More... | |
Static Public Attributes | |
| static const unsigned int | n = vpdt_field_traits<field_type>::dimension |
| define the fixed dimension (normally specified by template parameter n). More... | |
Private Attributes | |
| vpdt_mixture_of< dist_t > | impl_ |
A mixture of a fixed type of distributions.
A mixture is a weighted linear combination of other mixtures. This class represents a mixture of a specific type of distribution. Each component in the mixture has its own weight and parameters, but each must be of the same type.
| dist_t | is the type of a component distribution |
Definition at line 29 of file vpdl_mixture_of.h.
| typedef dist_t vpdl_mixture_of< dist_t >::component_type |
define the component type.
Definition at line 39 of file vpdl_mixture_of.h.
| typedef dist_t::field_type vpdl_mixture_of< dist_t >::F |
the data type to represent a point in the field.
Definition at line 44 of file vpdl_mixture_of.h.
| typedef dist_t::field_type vpdl_mixture_of< dist_t >::field_type |
the data type to represent a point in the field.
Definition at line 37 of file vpdl_mixture_of.h.
| typedef vpdt_field_traits<field_type>::matrix_type vpdl_mixture_of< dist_t >::matrix |
the data type used for matrices.
Definition at line 50 of file vpdl_mixture_of.h.
| typedef vpdt_field_traits<field_type>::scalar_type vpdl_mixture_of< dist_t >::T |
define the scalar type (normally specified by template parameter T).
Definition at line 46 of file vpdl_mixture_of.h.
| typedef vpdt_field_traits<field_type>::vector_type vpdl_mixture_of< dist_t >::vector |
define the vector type.
Definition at line 48 of file vpdl_mixture_of.h.
|
inline |
Definition at line 53 of file vpdl_mixture_of.h.
|
inlinevirtual |
Definition at line 56 of file vpdl_mixture_of.h.
|
virtualinherited |
The probability of being in an axis-aligned box.
The box is defined by two points, the minimum and maximum. Implemented in terms of cumulative_prob() by default.
Definition at line 89 of file vpdl_distribution.hxx.
|
inline |
The probability integrated over a box.
Definition at line 106 of file vpdl_mixture_of.h.
|
inlinevirtual |
Create a copy on the heap and return base class pointer.
Implements vpdl_distribution< vpdt_dist_traits< dist_t >::scalar_type, n >.
Definition at line 59 of file vpdl_mixture_of.h.
|
inlinevirtual |
Compute the covariance of the distribution.
Implements vpdl_distribution< vpdt_dist_traits< dist_t >::scalar_type, n >.
Definition at line 120 of file vpdl_mixture_of.h.
|
pure virtualinherited |
Compute the mean of the distribution.
This may be trivial for distributions like Gaussians, but actually involves computation for others.
|
inlinevirtual |
Compute the mean of the distribution.
weighted average of the component means
Definition at line 117 of file vpdl_mixture_of.h.
|
pure virtualinherited |
Evaluate the cumulative distribution function at a point.
This is the integral of the density function from negative infinity (in all dimensions) to the point in question
|
inlinevirtual |
Evaluate the cumulative distribution function at a point.
This is the integral of the density function from negative infinity (in all dimensions) to the point in question
Definition at line 112 of file vpdl_mixture_of.h.
|
pure virtualinherited |
Evaluate the unnormalized density at a point.
|
inline |
Compute the unnormalized density at this point.
Definition at line 91 of file vpdl_mixture_of.h.
|
inlinevirtual |
Return the run time dimension.
Implements vpdl_distribution< vpdt_dist_traits< dist_t >::scalar_type, n >.
Definition at line 65 of file vpdl_mixture_of.h.
|
inline |
Access (const) a component distribution of the mixture.
Definition at line 71 of file vpdl_mixture_of.h.
|
inline |
Access a component distribution of the mixture.
Definition at line 75 of file vpdl_mixture_of.h.
|
pure virtualinherited |
Compute the gradient of the unnormalized density at a point.
| g | the gradient vector |
|
inlinevirtual |
Compute the gradient of the unnormalized density at a point.
| g | the gradient vector |
Definition at line 100 of file vpdl_mixture_of.h.
|
inline |
Insert a new component at the end of the vector.
Definition at line 84 of file vpdl_mixture_of.h.
|
virtualinherited |
Compute the inverse of the cumulative_prob() function.
The value of x: P(x'<x) = P for x' drawn from the distribution.
The value of x: P(x'<x) = P for x' drawn from the distribution. This is only valid for univariate distributions multivariate distributions will return -infinity
Definition at line 78 of file vpdl_distribution.hxx.
|
inlinevirtualinherited |
Evaluate the log probability density at a point.
Definition at line 65 of file vpdl_distribution.h.
|
inlinevirtual |
The normalization constant for the density.
When density() is multiplied by this value it becomes prob_density norm_const() is reciprocal of the integral of density over the entire field
Implements vpdl_distribution< vpdt_dist_traits< dist_t >::scalar_type, n >.
Definition at line 125 of file vpdl_mixture_of.h.
|
inline |
Normalize the weights of the components to add to 1.
Definition at line 128 of file vpdl_mixture_of.h.
|
inlinevirtual |
Return the number of components in the mixture.
Implements vpdl_multi_cmp_dist< vpdt_dist_traits< dist_t >::scalar_type, vpdt_dist_traits< dist_t >::dimension >.
Definition at line 68 of file vpdl_mixture_of.h.
|
inlinevirtualinherited |
Evaluate the probability density at a point.
Definition at line 59 of file vpdl_distribution.h.
|
inline |
Compute the probability density at this point.
Definition at line 94 of file vpdl_mixture_of.h.
|
inline |
Remove the last component in the vector.
Definition at line 88 of file vpdl_mixture_of.h.
|
inline |
Set the weight of a component in the mixture.
Definition at line 81 of file vpdl_mixture_of.h.
|
inline |
Sort the components in order of decreasing weight.
Definition at line 131 of file vpdl_mixture_of.h.
|
inline |
Sort the components in the range idx1 to idx2 in order of decreasing weight.
Definition at line 134 of file vpdl_mixture_of.h.
|
inline |
Sort the components using any StrictWeakOrdering function.
The prototype should be
Definition at line 144 of file vpdl_mixture_of.h.
|
inline |
Sort the components in the range idx1 to idx2 using any StrictWeakOrdering function.
Definition at line 148 of file vpdl_mixture_of.h.
|
inline |
Return the weight of a component in the mixture.
Definition at line 78 of file vpdl_mixture_of.h.
|
private |
Definition at line 33 of file vpdl_mixture_of.h.
|
static |
define the fixed dimension (normally specified by template parameter n).
Definition at line 42 of file vpdl_mixture_of.h.
1.8.15