tplotD.gp - numeric - C++ library with numerical algorithms | |
git clone git://src.adamsgaard.dk/numeric | |
Log | |
Files | |
Refs | |
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 pr… | |
6 set grid | |
7 set log xy | |
8 plot "funcD.dat" u 1:2 t "rk12" w lp | |
9 |