aboutsummaryrefslogtreecommitdiff
path: root/dave/Makefile
diff options
context:
space:
mode:
authorsimuser <simuser@localhost.localdomain>2016-11-30 23:01:59 -0500
committersimuser <simuser@localhost.localdomain>2016-11-30 23:01:59 -0500
commit6c247285514fd5ae3d7497871aba5beaaa832243 (patch)
treeb7bc30a8b9c8a448c0a8154f866f1920b6d03792 /dave/Makefile
parent7930400aaca31089be48fe077d0c591294d727a5 (diff)
downloadlibsurvive-6c247285514fd5ae3d7497871aba5beaaa832243.tar.gz
libsurvive-6c247285514fd5ae3d7497871aba5beaaa832243.tar.bz2
Added Dave's Kalman Filter. Right now just performs the "Predict" phase.
Diffstat (limited to 'dave/Makefile')
-rw-r--r--dave/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/dave/Makefile b/dave/Makefile
new file mode 100644
index 0000000..a9e5c65
--- /dev/null
+++ b/dave/Makefile
@@ -0,0 +1,4 @@
+all:
+ gcc -o kalman_filter kalman_filter.c main.c -llapack -lblas -lm
+clean:
+ rm -f kalman_filter