Utils.h 175 B

12345678
  1. #ifndef UTILS_H
  2. #define UTILS_H
  3. bool checkAndPrintError(const char* message);
  4. float interpolate(float lag, float from, float to);
  5. void printMatrix(const float* data);
  6. #endif