|
Developer Documentation |
|
Centre for Vision, Speech & Signal Processing |
Comments:
The class NormalDistribution1dC provides facilities to compute
the density of the normal distribution.
Parent Classes:
Variables:
- RealT m;
-
mean
- RealT sig;
-
sigma
- RealT deltaX;
-
sampling of the x-axes
- RealSArray1dC table;
-
table of the function value of the N(m,sig)
Methods:
- NormalDistribution1dC(RealT mean,RealT sigma,RealT pr)
-
Creates the object for fast computation of normal distribution density
with the precision of an output value given by the parameter 'pr'.
Access to object
----------------
- RealT operator[](const RealT valueX) const
-
Returns the value of the density using the table.
Special functions
-----------------
- RealT ValueS(const RealT x,const RealT mean,const RealT sigma)
-
Returns the value of the density of normal distribution N(mean, sigma)
in the point 'x' computed directly from the definition.
The parameter 'sigma' is the standard deviation of the distribution.
- RealT ValueV(const RealT x,const RealT mean,const RealT var)
-
Returns the value of the density of normal distribution N(mean, var)
in the point 'x' computed directly from the definition.
The parameter 'var' is the variance of the distribution.
- RealT Value3V(const RealT var)
-
Returns the value of the density normal distribution N(mean, var)
at the point mean+3*sigma computed directly from the definition.
The parameter 'var' is the variance of the distribution and
'sigma' is the standard deviation.
|
Programmer:Radek Marik, Documentation by CxxDoc: Tue Mar 20 10:49:27 2001
|