PolynomialInterpolator1D.h

Go to the documentation of this file.
00001 // PolynomialInterpolation1D.h: interface for the PolynomialInterpolation1D class.
00002 //
00004 
00005 #if !defined(AFX_POLYNOMIALInterpolator1D_H__FB4EF769_FD9B_4764_8D0C_6A9ECEEF4509__INCLUDED_)
00006 #define AFX_POLYNOMIALInterpolator1D_H__FB4EF769_FD9B_4764_8D0C_6A9ECEEF4509__INCLUDED_
00007 
00008 #if _MSC_VER > 1000
00009 #pragma once
00010 #endif // _MSC_VER > 1000
00011 
00012 #include "Interpolator1D.h"
00013 #include <gsl/gsl_errno.h>
00014 #include <gsl/gsl_spline.h>
00015 
00016 #include <string>
00017 //using namespace std;
00018 namespace Interpolator
00019 {
00021 class PolynomialInterpolator1D : public Interpolator1D  
00022 {
00023 public:
00024         PolynomialInterpolator1D();
00025         virtual ~PolynomialInterpolator1D();
00026 
00027         PolynomialInterpolator1D(       
00028                                 std::string sName, 
00029                                 std::string sDescription, 
00030                                 InterpolationData1D* mInterpolationData);
00031 
00032         virtual double getInterpolatedValue(double dValue);
00033         virtual void updateInterpolator();
00034 /*
00035 private:
00036         gsl_interp_accel *acc;
00037         gsl_spline *spline;
00038 */
00039 };
00040 }
00041 #endif // !defined(AFX_POLYNOMIALInterpolator1D_H__FB4EF769_FD9B_4764_8D0C_6A9ECEEF4509__INCLUDED_)

Generated on Tue Apr 14 09:50:28 2009 for Interpolator Library by  doxygen 1.4.5