Declare the spline class -- which implements a cubic spline approximation over a range. More...
#include <map>
#include <set>
#include <functional>
#include <utility>
#include <vector>
Go to the source code of this file.
Classes | |
class | spline< X, Y, D > |
A spline is an approximation to a single valued function of one variable. The function is approximated by first defining a specific set of sample values. Other data points of the function are interpolated given the defined set. That is, you can approximate data points that don't really exist using one the interpolate_* methods or the function call operator. See below. More... | |
struct | info |
info stored for each x value in the sample data set More... | |
Namespaces | |
namespace | cxxtls |
The namespace that encapsulates most of the functionality in the CXX toolkit. |
Declare the spline class -- which implements a cubic spline approximation over a range.
Definition in file spline.h.