29#ifndef gslInterpolator_hpp
30#define gslInterpolator_hpp
33#include <gsl/gsl_interp.h>
34#include <gsl/gsl_errno.h>
36#include "../mxException.hpp"
46template <
typename _realT>
53 return ::gsl_interp_linear;
61template <
typename _realT>
68 return ::gsl_interp_steffen;
80template <
typename interpT>
84 typedef typename interpT::realT realT;
86 static_assert( std::is_same<double, typename std::remove_cv<realT>::type>::value,
87 "GSL Interpolation only works with double" );
109 std::vector<realT> &
yin
147template <
typename interpT>
152template <
typename interpT>
158template <
typename interpT>
161 setup(
xin.data(),
yin.data(),
xin.size() );
164template <
typename interpT>
167 if( m_interp !=
nullptr )
169 if( m_acc !=
nullptr )
173template <
typename interpT>
176 if( m_interp !=
nullptr )
178 if( m_acc !=
nullptr )
204 "gslInterpolation::setup",
211template <
typename interpT>
214 if(
xin.size() !=
yin.size() )
218 setup(
xin.data(),
yin.data(),
xin.size() );
221template <
typename interpT>
mxException for an allocation error
mxException for errors returned by a library call
mxException for a size error
Class to manage interpolation using the GSL interpolation library.
gslInterpolator(std::vector< realT > &xin, std::vector< realT > &yin)
Vector constructor.
gsl_interp_accel * m_acc
the gsl interpolation accelerator structure
void setup(std::vector< realT > &xin, std::vector< realT > &yin)
Setup the interpolator for the supplied data vectors.
~gslInterpolator()
Destructor.
realT * m_xin
the input x data
realT operator()(const realT &x)
Calculate the interpolated function value at a point.
gslInterpolator()
Default constructor.
gslInterpolator(realT *xin, realT *yin, size_t Nin)
Raw pointer constructor.
gsl_interp * m_interp
the gsl interpolator structure
void setup(realT *xin, realT *yin, size_t Nin)
Setup the interpolator for the supplied data pointers.
realT * m_yin
the input y data
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
GSL Linear Interpolation.
GSL Steffen Interpolation.