# plot the convergence properties # set term x11 # set term pbm set term gif size 400,300 set out 'convergence.gif' set data style linespoints set title "Iteration Count vs. Area Uncertainty" set xlabel "log (fraction undecided)" set ylabel "log (max iterations)" set ytics nomirror set y2label "log (cpu time)" # set y2range [12.5:9.5] set y2tics set key left set xrange [] reverse plot "convergence.dat" using (log($5)):(log($1)) title "max iterations", \ "convergence.dat" using (log($5)):(log($6)) title "cpu cycles" # plot "convergence.dat" using (log($1)):(log($1) * log($1)) # pause 1000