A fixed bandwidth spherical Gaussian kernel distribution. More...
#include <vpdl_kernel_gaussian_sfbw.h>

Public Types | |
| typedef vpdt_field_default< T, n >::type | vector |
| the data type used for vectors. More... | |
| typedef vpdt_field_traits< vector >::matrix_type | matrix |
| the data type used for matrices. More... | |
| typedef vpdt_field_default< T, n >::type | field_type |
| the data type used for vectors. More... | |
Public Member Functions | |
| vpdl_kernel_gaussian_sfbw () | |
| Default Constructor. More... | |
| vpdl_kernel_gaussian_sfbw (const std::vector< vector > &samplez, T bandwid=T(1)) | |
| Constructor - from sample centers and bandwidth (variance). More... | |
| virtual vpdl_distribution< T, n > * | clone () const |
| Create a copy on the heap and return base class pointer. More... | |
| virtual T | density (const vector &pt) const |
| Evaluate the unnormalized density at a point. More... | |
| virtual T | prob_density (const vector &pt) const |
| Evaluate the probability density at a point. More... | |
| virtual T | gradient_density (const vector &pt, vector &g) const |
| Compute the gradient of the unnormalized density at a point. More... | |
| virtual T | cumulative_prob (const vector &pt) const |
| Evaluate the cumulative distribution function at a point. More... | |
| T | box_prob (const vector &min_pt, const vector &max_pt) const |
| The probability of being in an axis-aligned box. More... | |
| virtual void | compute_covar (matrix &covar) const |
| Compute the covariance of the distribution. More... | |
| virtual T | kernel_norm_const () const |
| The normalization constant for the kernel. More... | |
| T | bandwidth () const |
| Access the bandwidth. More... | |
| void | set_bandwidth (T b) |
| Set the kernel bandwidth. More... | |
| virtual T | norm_const () const |
| The normalization constant for the density. More... | |
| unsigned int | num_components () const |
| Return the number of components in the mixture. More... | |
| virtual unsigned int | dimension () const |
Return the run time dimension, which does not equal n when n==0. More... | |
| virtual void | add_sample (const vector &s) |
| Add a new sample point. More... | |
| virtual void | clear_samples () |
| Remove all sample points. More... | |
| virtual void | set_samples (const std::vector< vector > &samplez) |
| Set the collection of sample points. More... | |
| const std::vector< vector > & | samples () const |
| Access the sample points. More... | |
| virtual void | compute_mean (vector &mean) const |
| Compute the mean of the distribution. More... | |
| virtual T | log_prob_density (const vector &pt) const |
| Evaluate the log probability density at a point. More... | |
| virtual vector | inverse_cdf (const T &p) const |
| Compute the inverse of the cumulative_prob() function. More... | |
A fixed bandwidth spherical Gaussian kernel distribution.
The bandwidth is the standard deviation of the Gaussian kernel.
Definition at line 28 of file vpdl_kernel_gaussian_sfbw.h.
|
inherited |
the data type used for vectors.
Definition at line 39 of file vpdl_distribution.h.
| typedef vpdt_field_traits<vector>::matrix_type vpdl_kernel_gaussian_sfbw< T, n >::matrix |
the data type used for matrices.
Definition at line 34 of file vpdl_kernel_gaussian_sfbw.h.
| typedef vpdt_field_default<T,n>::type vpdl_kernel_gaussian_sfbw< T, n >::vector |
the data type used for vectors.
Definition at line 32 of file vpdl_kernel_gaussian_sfbw.h.
|
inline |
Default Constructor.
Definition at line 37 of file vpdl_kernel_gaussian_sfbw.h.
|
inline |
Constructor - from sample centers and bandwidth (variance).
Definition at line 40 of file vpdl_kernel_gaussian_sfbw.h.
|
inlinevirtualinherited |
Add a new sample point.
Reimplemented in vpdl_kernel_vbw_base< T, n >.
Definition at line 56 of file vpdl_kernel_base.h.
|
inlineinherited |
Access the bandwidth.
Definition at line 123 of file vpdl_kernel_base.h.
|
inlinevirtual |
The probability of being in an axis-aligned box.
The box is defined by two points, the minimum and maximum. Reimplemented for efficiency since the axis are independent
Reimplemented from vpdl_distribution< T, n >.
Definition at line 142 of file vpdl_kernel_gaussian_sfbw.h.
|
inlinevirtualinherited |
Remove all sample points.
Reimplemented in vpdl_kernel_vbw_base< T, n >.
Definition at line 64 of file vpdl_kernel_base.h.
|
inlinevirtual |
Create a copy on the heap and return base class pointer.
Implements vpdl_distribution< T, n >.
Definition at line 45 of file vpdl_kernel_gaussian_sfbw.h.
|
inlinevirtual |
Compute the covariance of the distribution.
Implements vpdl_distribution< T, n >.
Definition at line 167 of file vpdl_kernel_gaussian_sfbw.h.
|
inlinevirtualinherited |
Compute the mean of the distribution.
Assume that each kernel has its mean at the sample point
Implements vpdl_distribution< T, n >.
Definition at line 83 of file vpdl_kernel_base.h.
|
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
Implements vpdl_distribution< T, n >.
Definition at line 118 of file vpdl_kernel_gaussian_sfbw.h.
|
inlinevirtual |
Evaluate the unnormalized density at a point.
Implements vpdl_distribution< T, n >.
Definition at line 51 of file vpdl_kernel_gaussian_sfbw.h.
|
inlinevirtualinherited |
Return the run time dimension, which does not equal n when n==0.
Implements vpdl_distribution< T, n >.
Definition at line 48 of file vpdl_kernel_base.h.
|
inlinevirtual |
Compute the gradient of the unnormalized density at a point.
| g | the gradient vector |
Implements vpdl_distribution< T, n >.
Definition at line 86 of file vpdl_kernel_gaussian_sfbw.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.
|
inlinevirtual |
The normalization constant for the kernel.
Implements vpdl_kernel_fbw_base< T, n >.
Definition at line 190 of file vpdl_kernel_gaussian_sfbw.h.
|
inlinevirtualinherited |
Evaluate the log probability density at a point.
Reimplemented in vpdl_gaussian_sphere< T, n >, vpdl_gaussian_indep< T, n >, and vpdl_gaussian< T, n >.
Definition at line 65 of file vpdl_distribution.h.
|
inlinevirtualinherited |
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< T, n >.
Definition at line 134 of file vpdl_kernel_base.h.
|
inlinevirtualinherited |
Return the number of components in the mixture.
Implements vpdl_multi_cmp_dist< T, n >.
Definition at line 45 of file vpdl_kernel_base.h.
|
inlinevirtual |
Evaluate the probability density at a point.
Reimplemented from vpdl_distribution< T, n >.
Definition at line 73 of file vpdl_kernel_gaussian_sfbw.h.
|
inlineinherited |
Access the sample points.
Definition at line 76 of file vpdl_kernel_base.h.
|
inlineinherited |
Set the kernel bandwidth.
Definition at line 126 of file vpdl_kernel_base.h.
|
inlinevirtualinherited |
Set the collection of sample points.
Reimplemented in vpdl_kernel_vbw_base< T, n >.
Definition at line 70 of file vpdl_kernel_base.h.
1.8.15