source: TRACY3/trunk/tracy/gnuplot/track_H.plt @ 3

Last change on this file since 3 was 3, checked in by zhangj, 12 years ago

Initiale import

  • Property svn:executable set to *
File size: 541 bytes
Line 
1ps = 0; eps = 0;
2
3if (!ps) set terminal x11;
4if (ps && !eps) set terminal postscript enhanced color solid;
5if (ps && eps) set terminal postscript eps enhanced color solid;
6
7set grid;
8
9if (ps) set output "track_H.ps"
10set title "H";
11set xlabel "Turn No";
12set ylabel "[%]";
13#set yrange[0:*];
14plot "track_H.dat" using 1:2 notitle with impulses 3;
15if (!ps) pause -1;
16
17if (ps) set output "track_H.ps"
18set title "H";
19set xlabel "Turn No";
20set ylabel "[%]";
21#set yrange[0:*];
22plot "track_H.dat" using 1:3 notitle with impulses 2;
23if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.