00001 /*************************************************************************** 00002 poly5_kernel.h - description 00003 ------------------- 00004 begin : Mon Jan 20 2003 00005 copyright : (C) 2003 by Moritz Franosch 00006 email : mail@Franosch.org 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef POLY5_KERNEL_H 00019 #define POLY5_KERNEL_H 00020 00021 #include "kernel.h" 00022 00023 00029 class Poly5_Kernel : public Kernel { 00030 00031 public: 00032 00035 Poly5_Kernel(const int d, const double h); 00036 00039 virtual double w(const double x) const; 00040 00043 virtual double dw(const double x) const; 00044 00045 }; 00046 00047 00048 #endif // POLY5_KERNEL_H