mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
16 lines
206 B
C
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
|
||
|
|