indii/ml/aux/GaussianKernel.cpp

00001 #include "GaussianKernel.hpp"
00002 
00003 using namespace indii::ml::aux;
00004 
00005 GaussianKernel::GaussianKernel() : Kernel() {
00006   //
00007 }
00008 
00009 GaussianKernel::GaussianKernel(const unsigned int N, const double h) :
00010     Kernel(h) {
00011   ZI = 1.0 / pow(h * sqrt(2.0*M_PI), N);
00012   E = -1.0 / (2.0 * pow(h,2));
00013 }
00014 
00015 GaussianKernel::~GaussianKernel() {
00016   //
00017 }

Generated on Wed Dec 17 15:11:57 2008 for dysii Dynamical Systems Library by  doxygen 1.5.3