]> git.mxchange.org Git - simgear.git/blob - simgear/math/interpolater.hxx
Modified Files:
[simgear.git] / simgear / math / interpolater.hxx
1 /**
2  * \file interpolater.hxx
3  * Routines to handle linear interpolation from a table of x,y The
4  * table must be sorted by "x" in ascending order
5  */
6
7 // Written by Curtis Olson, started April 1998.
8 //
9 // Copyright (C) 1998  Curtis L. Olson  - http://www.flightgear.org/~curt
10 //
11 // This library is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU Library General Public
13 // License as published by the Free Software Foundation; either
14 // version 2 of the License, or (at your option) any later version.
15 //
16 // This library is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 // Library General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24 //
25 // $Id$
26
27
28 #ifndef _INTERPOLATER_H
29 #define _INTERPOLATER_H
30
31
32 #ifndef __cplusplus
33 # error This library requires C++
34 #endif
35
36 #include <simgear/compiler.h>
37
38 #include "simgear/structure/SGReferenced.hxx"
39
40 #include <map>
41
42 #include STL_STRING
43 SG_USING_STD(string);
44
45 /**
46  * A class that provids a simple linear 2d interpolation lookup table.
47  * The actual table is expected to be loaded from a file.  The
48  * independant variable must be strictly ascending.  The dependent
49  * variable can be anything.
50  */
51 class SGInterpTable : public SGReferenced {
52 public:
53
54     /**
55      * Constructor. Creates a new, empty table.
56      */
57     SGInterpTable();
58
59     /**
60      * Constructor. Loads the interpolation table from the specified file.
61      * @param file name of interpolation file
62      */
63     SGInterpTable( const string& file );
64
65
66     /**
67      * Add an entry to the table, extending the table's length.
68      *
69      * @param ind The independent variable.
70      * @param dep The dependent variable.
71      */
72     void addEntry (double ind, double dep);
73     
74
75     /**
76      * Given an x value, linearly interpolate the y value from the table.
77      * @param x independent variable
78      * @return interpolated dependent variable
79      */
80     double interpolate(double x) const;
81
82     /** Destructor */
83     ~SGInterpTable();
84
85 private:
86     typedef std::map<double, double> Table;
87     Table _table;
88 };
89
90
91 #endif // _INTERPOLATER_H
92
93