#ifndef UTILS_H
#define UTILS_H

bool checkAndPrintError(const char* message);
float interpolate(float lag, float from, float to);
void printMatrix(const float* data);

#endif