# gnuplot input file that produces window and .ps file set term x11 set data style linespoints set xlabel "Number of time steps" set ylabel "Root mean squared error w.r.t. true probability" #set yrange [0.0:0.2] #set xrange [0:1000] plot 'pf-maze2x2-10step-10.data' using 1:2 title "PF 10", 'pf-maze2x2-10step-100.data' using 1:2 title "PF 100", 'pf-maze2x2-10step-1000.data' using 1:2 title "PF 1000", 'lw-maze2x2-10step-10.data' using 1:2 title "LW 10", 'lw-maze2x2-10step-100.data' using 1:2 title "LW 100", 'lw-maze2x2-10step-1000.data' using 1:2 title "LW 1000" pause -1 "Press return here when ready. Output will be written to q7.ps" set term postscript landscape "Times-Roman" 18 set output "q7.ps" replot