all.gnu 1.03 KB
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