no need for libm or GSL to compile the interpolate code

This commit is contained in:
Axel Kohlmeyer 2019-04-27 17:50:12 -04:00
parent d190b76075
commit 0fac0e18d1
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
2 changed files with 1 additions and 3 deletions

View File

@ -2,7 +2,7 @@ Interpolate.x tries to perform a cubic polynomial interpolation
of the MEP.
Compile the program with:
gcc interpolate.c -o interpolate.x -lm -lgsl
gcc interpolate.c -o interpolate.x
and then run it as:
./interpolate.x

View File

@ -9,8 +9,6 @@
------------------------------------------------------------------------- */
#include <stdio.h>
#include <math.h>
#include <time.h>
#include <string.h>
#include <stdlib.h>