mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
gslInterpolation.hpp File Reference

Wrappers for using the GNU Scientific Library 1-D interpolation functions. More...

Wrappers for using the GNU Scientific Library 1-D interpolation functions.

Author
Jared R. Males (jared.nosp@m.male.nosp@m.s@gma.nosp@m.il.c.nosp@m.om)

Definition in file gslInterpolation.hpp.

Go to the source code of this file.

Namespaces

 mx
 The mxlib c++ namespace.
 

Functions

template<typename realT >
int mx::math::gsl_interpolate (const gsl_interp_type *interpT, realT *xin, realT *yin, size_t Nin, realT *xout, realT *yout, size_t Nout)
 Interpolate a 1-D data X vs Y discrete function onto a new X axis. More...
 
template<typename realT >
int mx::math::gsl_interpolate (const gsl_interp_type *interpT, std::vector< realT > &xin, std::vector< realT > &yin, std::vector< realT > &xout, std::vector< realT > &yout)
 Interpolate a 1-D data X vs Y discrete function onto a new X axis (vector version) More...