2d.gnu
1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
set title "aspect = 1.0 produced by autofill"
set grid
set xlabel "area (pix)"
set ylabel "(pix/sec)" -1
plot "noaa_nozb.data" using 1:5 with lines, \
"aa_nozb.data" using 1:5 with lines, \
"noaa_zb.data" using 1:5 with lines, \
"aa_zb.data" using 1:5 with lines, \
"ci8.data" using 1:5 with lines
pause -1 "hit return to output postscript"
set term post land
set output "2d_f1.ps"
replot
set term X11
set ylabel "usec per tri"
plot "noaa_nozb.data" using 1:4 with lines, \
"aa_nozb.data" using 1:4 with lines, \
"noaa_zb.data" using 1:4 with lines, \
"aa_zb.data" using 1:4 with lines, \
"ci8.data" using 1:4 with lines
pause -1 "hit return to output postscript"
set term post land
set output "2d_t1.ps"
replot
set term X11
set ylabel "tri pre frame"
plot "noaa_nozb.data" using 1:3 with lines, \
"aa_nozb.data" using 1:3 with lines, \
"noaa_zb.data" using 1:3 with lines, \
"aa_zb.data" using 1:3 with lines, \
"ci8.data" using 1:3 with lines
pause -1 "hit return to output postscript"
set term post land
set output "2d_n1.ps"
replot
quit