Home | History | Annotate | Download | only in tko

Lines Matching refs:gnuplot

59     open (GNUPLOT, "> ${file}.gnuplot");
61 print GNUPLOT "set terminal png size $x_res,$y_res\n";
62 print GNUPLOT "set key below\n";
63 print GNUPLOT "set title \"$title\"\n";
64 print GNUPLOT "set xlabel \"Kernel\"\n";
65 print GNUPLOT "set ylabel \"${y_label}\"\n";
66 print GNUPLOT "set output \"${file}.png\"\n";
67 print GNUPLOT "set style data yerrorlines\n";
68 print GNUPLOT "set grid\n";
70 print GNUPLOT "\nset xtics rotate (${xtics})\n\n";
71 print GNUPLOT "plot $plots\n";
72 print GNUPLOT "replot";
73 close (GNUPLOT);
74 `/usr/bin/gnuplot ${file}.gnuplot`;
75 `chmod 644 ${file}.gnuplot`;