1 2 #ifndef __INTERPOLATION_H__ 3 #define __INTERPOLATION_H__ 4 5 void interpolation(const float *x, const float *y, int Num, float x0, float*y0); 6 void interpolation(const float *x, const unsigned short *y, int Num, float x0, unsigned short *y0); 7 int interpolation(unsigned char *x, bool *y, int xNum, unsigned char x0, bool *y0); 8 9 #endif 10