From: Keith Packard Date: Mon, 29 Apr 2013 06:14:50 +0000 (-0700) Subject: altos/test: Add telemega plot helper script X-Git-Tag: 1.2.1~80 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=e2c697af790d53c68154facc19e4096aed5de798;ds=sidebyside altos/test: Add telemega plot helper script Signed-off-by: Keith Packard --- diff --git a/src/test/plotmm b/src/test/plotmm new file mode 100755 index 00000000..5f5bd2ca --- /dev/null +++ b/src/test/plotmm @@ -0,0 +1,11 @@ +gnuplot -persist << EOF +set ylabel "altitude (m)" +set y2label "angle (d)" +set xlabel "time (s)" +set xtics border out nomirror +set ytics border out nomirror +set y2tics border out nomirror +plot "$1" using 1:3 with lines axes x1y1 title "raw height",\ +"$1" using 1:9 with lines axes x1y2 title "angle",\ +"$1" using 1:11 with lines axes x1y2 title "qangle" +EOF