trick/trick_sims/SIM_parachute/models/parachute/include/interpolate.h

16 lines
206 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