Files
libpasada/pasada-lib/include/pd_signal.h

18 lines
421 B
C
Raw Normal View History

2026-03-04 15:34:46 +01:00
//
// Created by david on 04.03.2026.
//
#ifndef PASADASUPERPROJECT_SIGNAL_H
#define PASADASUPERPROJECT_SIGNAL_H
#include <vector>
namespace pd_signal {
/**
* Evaluate at points x the function given by the samples fp[xp[n]].
* Returned in y.
*/
void interp(std::vector<double>& x, std::vector<double>& xp, std::vector<double>& fp, std::vector<double>& y);
}
#endif //PASADASUPERPROJECT_SIGNAL_H