numeric

C++ library with numerical algorithms
git clone git://src.adamsgaard.dk/numeric # fast
git clone https://src.adamsgaard.dk/numeric.git # slow
Log | Files | Refs | README | LICENSE Back to index

plotB.gp (175B)


      1 set terminal png
      2 set output "plotB.png"
      3 set xlabel "x.imag"
      4 set ylabel "y.imag"
      5 set title "Integration along an imaginary path"
      6 set grid
      7 plot "funcB.dat" u 2:4 t "rk12" w lp
      8