set grid set term png xffffff x000000 x404040 x00a500 xc000c0 set output "logdist.png" #set title "Histograph of Integer Magnitudes in Polynomial Calculations" set xlabel "bit-length" set ylabel "log2(1+count)" plot [x=0:325] [0:25] 'logdist.dat' notitle,\ 'logdist.dat' smooth bezier notitle set grid set output "intper.png" #set title "Histogram of Integer Magnitudes in Polynomial Calculations" set xlabel "bit-length" set ylabel "100 * count / total" plot [x=0:65] 'intper.dat' title "occurences of bit-length > x" with steps,\ 'per.dat' title "occurences of bit-length = x" with boxes #set nogrid #set bmargin 0 #set lmargin 0 #set rmargin 0 #set tmargin 0 #set term jpeg size 96,64 xffffff x000000 x404040 x00a500 xc000c0 #set output "intper96.png" #plot [x=0:7] [0:30] 'intper.dat' notitle with steps,\ # 'per.dat' notitle with boxes