tplot.gp - numeric - C++ library with numerical algorithms
 (HTM) git clone git://src.adamsgaard.dk/numeric
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tplot.gp (205B)
       ---
            1 set term png enhanced
            2 set output "ode.png"
            3 set size 1.0,1.0
            4 set xlabel 'x'
            5 set ylabel 'y'  
            6 set title "Projectile trajectory"
            7 plot [0:1500] [-100:500] \
            8                "ODE.output" u 2:3 w p title  'data' 
            9