source: TRACY3/trunk/tracy/gnuplot/ID_corr.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: 1.1 KB
Line 
1ps = 0; eps = 0;
2
3if (!ps) set terminal x11;
4if (ps && !eps) \
5  set terminal postscript enhanced color solid lw 2 "Times-Roman" 20;
6if (ps && eps) \
7  set terminal postscript eps enhanced color solid lw 2 "Times-Roman" 20;
8
9set grid;
10
11set style line 1 lt 1 lw 1 lc rgb "blue";
12set style line 2 lt 1 lw 1 lc rgb "green";
13set style line 3 lt 1 lw 1 lc rgb "red";
14
15if (ps) set output "ID_corr_1.ps"
16set title "{/Symbol Db}_x/{/Symbol b}_x";
17set xlabel "s [m]";
18set ylabel "[%]";
19plot "ID_corr_res.out" using 1:2 notitle with impulses ls 1;
20if (!ps) pause -1;
21
22if (ps) set output "ID_corr_2.ps"
23set title "{/Symbol Db}_y/{/Symbol b}_y";
24set xlabel "s [m]";
25set ylabel "[%]";
26plot "ID_corr_res.out" using 1:3 notitle with impulses ls 1;
27if (!ps) pause -1;
28
29if (ps) set output "ID_corr_3.ps"
30set title "{/Symbol Dn}_x";
31set xlabel "s [m]";
32set ylabel "";
33plot "ID_corr_res.out" using 1:4 notitle with impulses ls 1;
34if (!ps) pause -1;
35
36if (ps) set output "ID_corr_4.ps"
37set title "{/Symbol Dn}_y";
38set xlabel "s [m]";
39set ylabel "";
40plot "ID_corr_res.out" using 1:5 notitle with impulses ls 1;
41if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.