29#ifndef mx_math_logInterpolator_hpp
30#define mx_math_logInterpolator_hpp
32#include "../mxException.hpp"
51template <
typename interpT>
56 typedef typename interpT::realT realT;
75 const std::vector<realT> &y
86 void setup(
const std::vector<realT> &x,
87 const std::vector<realT> &y
90 if( x.size() != y.size() )
98 for(
size_t n = 0; n < x.size(); ++n )
mxException for invalid arguments
mxException for a size error
Class to manage interpolation using the GSL interpolation library.
Interpolate a function in log space.
logInterpolator()
Default constructor.
std::vector< realT > m_logx
Internal storage of the log10 values of the x values.
gslInterpolator< interpT > m_interp
The interpolator.
logInterpolator(const std::vector< realT > &x, const std::vector< realT > &y)
Convert the inputs to their log10 values, and construct the interpolator.
realT operator()(const realT &x)
Calculate the interpolated value at the input.
void setup(const std::vector< realT > &x, const std::vector< realT > &y)
Convert the inputs to their log10 values, and construct the interpolator.
std::vector< realT > m_logy
Internal storage of the lgo10 values of the y values.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Class for managing 1-D interpolation using the GNU Scientific Library.