summaryrefslogtreecommitdiff
path: root/src/kalman/run-eject
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-04-28 23:21:17 -0700
committerKeith Packard <keithp@keithp.com>2013-05-07 20:07:53 -0700
commit5a77a62bce5e5ab5998f24588839f3c8a1cc6221 (patch)
tree7765421334e5cc613ba1fb47f0eda0db9aa5a5cb /src/kalman/run-eject
parent24a03d0c64fc0b56ad5ccfd6588aa47690ea2a65 (diff)
altos: Build test framework for kalman filter
This has some known flight data and generates kalman filter information for them to test Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/kalman/run-eject')
-rwxr-xr-xsrc/kalman/run-eject7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/kalman/run-eject b/src/kalman/run-eject
new file mode 100755
index 00000000..ef21e6ac
--- /dev/null
+++ b/src/kalman/run-eject
@@ -0,0 +1,7 @@
+#!/bin/sh
+M=100
+for i in `cat ejection-csv`; do
+ micro=`basename $i .csv`-$M.micro
+ echo $i '->' $micro
+ nickle ./kalman_micro.5c -M $M $i > $micro
+done