Go to the documentation of this file.00001
00002 #ifndef VIFA_GAUSSIAN_H
00003 #define VIFA_GAUSSIAN_H
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 class vifa_gaussian
00019 {
00020 protected:
00021 float mu_;
00022 float sigma_;
00023
00024 public:
00025 vifa_gaussian(float mu, float sigma) : mu_(mu), sigma_(sigma) {}
00026
00027 virtual ~vifa_gaussian(void) {}
00028
00029 float pdf(float x);
00030
00031 protected:
00032 float norm_dens(float x);
00033 };
00034
00035
00036 #endif // VIFA_GAUSSIAN_H