From: Keith Packard Date: Thu, 24 Dec 2015 07:15:16 +0000 (-0800) Subject: altos: Add easy mini plotting helper in test code X-Git-Tag: 1.6.3~2^2~58 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=8da29480a2fdf890d553b30eab58fc884210c1a5 altos: Add easy mini plotting helper in test code Signed-off-by: Keith Packard --- diff --git a/src/test/plotem b/src/test/plotem new file mode 100755 index 00000000..8bc392cf --- /dev/null +++ b/src/test/plotem @@ -0,0 +1,10 @@ +gnuplot -persist << EOF +set ylabel "altitude (m)" +set y2label "error" +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:21 with lines axes x1y2 title "error" +EOF