MT_interpolation.hpp 486 B

123456789101112131415161718192021
  1. #ifndef MT_INTERPOLATION__HPP
  2. #define MT_INTERPOLATION__HPP
  3. #include <Eigen/Core>
  4. class MT_interpolation
  5. {
  6. public:
  7. float* xInterp;
  8. const float* xData;
  9. unsigned int length;
  10. const float* xd;
  11. const float* yd;
  12. unsigned int length_xd_yd;
  13. MT_interpolation(float* xI = NULL, const float* xD = NULL, unsigned int l = 0, const float* x = NULL, const float* y = NULL, unsigned int lxdyd = 0) :xInterp(xI), xData(xD), length(l), xd(x), yd(y), length_xd_yd(lxdyd) {};
  14. };
  15. #endif