all.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
set title "combinations of aa/zb produced by autofill"
set parametric
set xlabel "area (pixels)" ,-1
set ylabel "aspect (x/y)"
set zlabel "fill rate (pixels/sec)" 8,1
splot "noaa_nozb.data" using 1:2:5 with lines, \
"aa_nozb.data" using 1:2:5 with lines, \
"noaa_zb.data" using 1:2:5 with lines, \
"aa_zb.data" using 1:2:5 with lines
pause -1 "hit return to output postscript"
set term post land
set output "all_f.ps"
replot
set term X11
set zlabel "usec per tri" 8,1
splot "noaa_nozb.data" using 1:2:4 with lines, \
"aa_nozb.data" using 1:2:4 with lines, \
"noaa_zb.data" using 1:2:4 with lines, \
"aa_zb.data" using 1:2:4 with lines
pause -1 "hit return to output postscript"
set term post land
set output "all_t.ps"
replot
set term X11
set zlabel "n tri" 8,1
splot "noaa_nozb.data" using 1:2:3 with lines, \
"aa_nozb.data" using 1:2:3 with lines, \
"noaa_zb.data" using 1:2:3 with lines, \
"aa_zb.data" using 1:2:3 with lines
pause -1 "hit return to output postscript"
set term post land
set output "all_n.ps"
replot
quit