Heating controller with neural thermal model written in Python
Jacek Kowalski
2018-06-24 66a9fb40efe1311b34a3cee3f83f10c6990759af
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/gnuplot
 
colnum=2
 
#colnum=4
 
set xrange [-1:10]
 
plot "extend.avg" using 0:(column(colnum)):(column(colnum+1)):xticlabels(1) with yerrorbars lt 1 title "neural model", \
    "extend.avg" using 0:(column(colnum)):(column(colnum+1)) with lines lt 1 notitle
 
pause -1