tplotA.gp - numeric - C++ library with numerical algorithms
(HTM) git clone git://src.adamsgaard.dk/numeric
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
tplotA.gp (169B)
---
1 set terminal png
2 set output "plotA.png"
3 set xlabel "x.real"
4 set ylabel "y.real"
5 set title "Integration along a real path"
6 set grid
7 plot "funcA.dat" u 1:3 t "rk12" w lp
8