tplotD.gp - numeric - C++ library with numerical algorithms
 (HTM) git clone git://src.adamsgaard.dk/numeric
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tplotD.gp (228B)
       ---
            1 set terminal png
            2 set output "plotD.png"
            3 set xlabel "Precision"
            4 set ylabel "No. of steps"
            5 set title "Number of steps required for a given absolute and relative precision"
            6 set grid
            7 set log xy
            8 plot "funcD.dat" u 1:2 t "rk12" w lp
            9