22#ifndef SPLINES_UTILS_HH
23#define SPLINES_UTILS_HH
29 using std::fpclassify;
39 #ifndef DOXYGEN_SHOULD_SKIP_THIS
54 return (DL*hR+DR*hL)/(hR+hL);
70 return ((2*DL-DR)*hL+DL*hR)/(hR+hL);
86 return ((2*DR-DL)*hR+DR*hL)/(hR+hL);
226 first_derivative_build(
234 second_derivative_build(
Definition SplineAkima.cc:50
int integer
Signed integer type for splines.
Definition Splines.hh:58
double real_type
Floating point type for splines.
Definition Splines.hh:57