// // Created by david on 04.03.2026. // #ifndef PASADASUPERPROJECT_SIGNAL_H #define PASADASUPERPROJECT_SIGNAL_H #include namespace pd_signal { /** * Evaluate at points x the function given by the samples fp[xp[n]]. * Returned in y. */ void interp(std::vector& x, std::vector& xp, std::vector& fp, std::vector& y); } #endif //PASADASUPERPROJECT_SIGNAL_H