summaryrefslogtreecommitdiff
path: root/src/kalman/run-micro
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-04-28 23:21:17 -0700
committerKeith Packard <keithp@keithp.com>2013-04-28 23:21:17 -0700
commit9ee3f520ea74f75f661e2208d7640b21212cacba (patch)
tree6102fd500c4cf94aa362a249a0273c3ce7c6777a /src/kalman/run-micro
parent86d6951eb480645cd2845aafd2396ec9dd4e69af (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-micro')
-rwxr-xr-xsrc/kalman/run-micro10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/kalman/run-micro b/src/kalman/run-micro
new file mode 100755
index 00000000..c63ba371
--- /dev/null
+++ b/src/kalman/run-micro
@@ -0,0 +1,10 @@
+#!/bin/sh
+#for M in 10 20 50 100 200 500; do
+#for M in 50 100 200; do
+for M in 2 5 10; do
+ for i in *.csv; do
+ micro=`basename $i .csv`-$M.micro
+ echo $i '->' $micro
+ nickle ./kalman_micro.5c -M $M $i > $micro
+ done
+done