tplotall.gp - numeric - C++ library with numerical algorithms
 (HTM) git clone git://src.adamsgaard.dk/numeric
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tplotall.gp (347B)
       ---
            1 set terminal png        # Set output file format
            2 set output "plot.png" # Set output filename
            3 set key top left
            4 set xlabel "Matrix width and height"
            5 set ylabel "Execution time [s]"
            6 set title "Performance comparison of QR decomposition"
            7 set log xy
            8 set grid
            9 plot "performance.dat" u 1:2 title "Homegrown" w lp, "performance.dat" u 1:3 title "Armadillo" w lp