summaryrefslogtreecommitdiff
path: root/mpplot/mplus
blob: 20c2bc14aa383af38507cf763475fd4f868703d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set xlabel "Time"
set ylabel "Sensor Value"
#set yrange [0:16000]

set size 1.0, 0.6
set terminal postscript portrait enhanced mono dashed lw 1 "Helvetica" 14

set title "Sensors"
set output '/tmp/wii.ps'
plot '/tmp/wii.tail' using 1:2 with lines lt 1 lc rgb "green" title "Pitch", \
     '/tmp/wii.tail' using 1:3 with lines lt 1 lc rgb "blue" title "Roll", \
     '/tmp/wii.tail' using 1:4 with lines lt 1 lc rgb "red" title "Yaw"