# Modified from the script written by: # Jesper Bojesen # e-mail: Jesper.Bojesen@uni-c.dk # Version: 1.0 # October 1998 - February 1999 ############################################################################### set output "multiplication.ps" set terminal postscript landscape monochrome dashed set title 'Comparison of two multiplication methods' set xlabel 'Size of the integer multiplied by itself [in words]' set ylabel 'Execution time [in seconds]' plot "school.data" title "School method" with linespoints,\ "divide_and_conquer.data" title "Divide and conquer" with linespoints,\ 0 notitle