diff options
| author | Keith Packard <keithp@keithp.com> | 2013-04-28 23:21:17 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2013-05-07 20:07:53 -0700 |
| commit | 5a77a62bce5e5ab5998f24588839f3c8a1cc6221 (patch) | |
| tree | 7765421334e5cc613ba1fb47f0eda0db9aa5a5cb /src/kalman/run-micro | |
| parent | 24a03d0c64fc0b56ad5ccfd6588aa47690ea2a65 (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-x | src/kalman/run-micro | 10 |
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 |
