trick/trick_sims/SIM_rocket/models/rocket/include/interpolate.h
2019-01-15 16:23:12 -06:00

11 lines
201 B
C

#ifndef INTERPOLATE_H
#define INTERPOLATE_H
#ifdef __cplusplus
extern "C" {
#endif
double interpolate( double x, const double xa[], const double fa[], int N_elems );
#ifdef __cplusplus
}
#endif
#endif