1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| #!/usr/bin/gnuplot
|
| colnum=3
|
| #colnum=5
|
|
| plot "design.avg" index 0 using ($2-0.1):(column(colnum)):(column(colnum+1)) with yerrorbars lt 1 title "neural model (original)", \
| "design.avg" index 0 using ($2-0.1):(column(colnum)) with lines lt 1 notitle, \
| "design.avg" index 1 using 2:(column(colnum)):(column(colnum+1)) with yerrorbars lt 2 title "neural model (reduced)", \
| "design.avg" index 1 using 2:(column(colnum)) with lines lt 2 notitle, \
| "design.avg" index 2 using ($2+0.1):(column(colnum)):(column(colnum+1)) with yerrorbars lt 3 title "neural model (extended)", \
| "design.avg" index 2 using ($2+0.1):(column(colnum)) with lines lt 3 notitle
|
| pause -1
|
|