// // Author: Joshua Cohen // Copyright 2017 // #ifndef RESAMP_METHODS_H #define RESAMP_METHODS_H #include #include using std::complex; using std::vector; struct ResampMethods { vector fintp; float f_delay; ResampMethods(); void prepareMethods(int); complex interpolate_cx(vector > >&,int,int,double,double,int,int,int); }; #endif