blob: 8d42553f2dc35cf5d31af036e7f7cc60b104caff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
set title "Some Sample Plots"
set ylabel "rad/s"
set y2label "I"
set y2tics
set grid
set style line 1 \
linecolor rgb '#0060ad' \
linetype 1 linewidth 3
set style line 2 \
linecolor rgb '#dd181f' \
linetype 2 linewidth 3 \
plot 'data1.dat' using 1:2 title "Angular Speed" with lines linestyle 1 axis x1y1, \
'data1.dat' using 1:4 title "Current" with lines linestyle 2 axis x1y2
pause -1
|