tplotC.gp - numeric - C++ library with numerical algorithms
 (HTM) git clone git://src.adamsgaard.dk/numeric
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tplotC.gp (214B)
       ---
            1 set terminal png
            2 set output "plotC.png"
            3 set xlabel "x.r"
            4 set ylabel "x.i"
            5 set zlabel "y"
            6 set title "Integration along a complex path"
            7 set grid
            8 splot "funcC.dat" u 1:2:3 t "y.real" w lp, "" u 1:2:4 t "y.imag" w lp
            9