tMade plot axes linear - numeric - C++ library with numerical algorithms
 (HTM) git clone git://src.adamsgaard.dk/numeric
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit ae724a0097e0f7ba6c7a9a2ee9c0aef512cd2dc9
 (DIR) parent 7af13ef7807c474b7d6e8cd8f91fc4082f3700a3
 (HTM) Author: Anders Damsgaard Christensen <adc@geo.au.dk>
       Date:   Tue, 22 Jan 2013 21:17:23 +0100
       
       Made plot axes linear
       
       Diffstat:
         M matrixmul/plot.gp                   |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/matrixmul/plot.gp b/matrixmul/plot.gp
       t@@ -3,7 +3,7 @@ set output "performance.png"
        set xlabel "Matrix side length"
        set ylabel "Execution time [s]"
        set title "Random number generation and matrix multiplication"
       -set log xy
       +#set log xy
        set grid
        set key outside
        plot "lua-arrofarrs.dat" title "Lua: Arrays of arrays" w lp, "lua-linarr.dat" title "Lua: Linear arrays" w lp, "luajit-arrofarrs.dat" title "LuaJIT: Arrays of arrays" w lp, "luajit-linarr.dat" title "LuaJIT: Linear arrays" w lp, "c-arrofarrs.dat" title "C: Arrays of arrays" w lp, "c-linarr.dat" title "C: Linear arrays" w lp, "c-omp-arrofarrs.dat" title "C-OpenMP: Arrays of arrays" w lp, "c-omp-linarr.dat" title "C-OpenMP: Linear arrays" w lp, "julia.dat" title "Julia" w lp, "cpp-vectorofvectors.dat" title "C++: Vectors of vectors" w lp, "cpp-linvectors.dat" title "C++: Linear vectors" w lp, "python-numpy.dat" title "Python: Numpy" w lp, "octave.dat" title "Octave" w lp