tplot.gp - numeric - C++ library with numerical algorithms | |
git clone git://src.adamsgaard.dk/numeric | |
Log | |
Files | |
Refs | |
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 |