mirror of
https://github.com/nasa/trick.git
synced 2024-12-27 16:38:52 +00:00
11 lines
201 B
C
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
|