Added gnuplot scripts used to tune the 2014 drive kalman filter.
Change-Id: Icd1ae00d485b2b032a654ad584cf49d838413944
diff --git a/y2014/control_loops/drivetrain/kfplot.gnuplot b/y2014/control_loops/drivetrain/kfplot.gnuplot
new file mode 100644
index 0000000..ebcee6c
--- /dev/null
+++ b/y2014/control_loops/drivetrain/kfplot.gnuplot
@@ -0,0 +1,11 @@
+set term x11
+
+plot '/tmp/dump' using 1:2 title 'left voltage' with lines,\
+ '/tmp/dump' using 1:3 title 'right voltage' with lines,\
+ '/tmp/dump' using 1:6 title 'gyro' with lines,\
+ '/tmp/dump' using 1:7 title 'rate' with lines,\
+ '/tmp/dump' using 1:8 title 'battery' with lines,\
+ '/tmp/dump' using 1:9 title 'left_vel' with lines,\
+ '/tmp/dump' using 1:10 title 'right_vel' with lines
+
+pause -1