source: liacs/ccs/op2/pareto.gp@ 211

Last change on this file since 211 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

File size: 797 bytes
RevLine 
[2]1set terminal postscript eps color
2set output "pareto.eps"
3set format xy "%g"
4set notitle
5set xlabel "surface area"
6set ylabel 'volume in liters'
7set noautoscale
8set xrange [0:400]
9set yrange [0:400]
10unset key
11set parametric
12set bmargin 3
13set rmargin 0
14set lmargin 8
15set tmargin 0
16#set size square
17set style line 1 lt -1 lw 1 pt 1
18set style line 2 lt 1 lw 2 pt 1
19set style line 3 lt 3 lw 4 pt 1
20set grid lw 5
21set label "Pareto front" at 290,390 center tc lt 3
22plot [0:2*pi] \
23 sin(t) * 100,400 - cos(t) * 100 ls 1, \
24 sin(t) * 150,400 - cos(t) * 150 ls 1, \
25 sin(t) * 200,400 - cos(t) * 200 ls 1, \
26 sin(t) * 250,400 - cos(t) * 250 ls 1, \
27 sin(t) * 285,400 - cos(t) * 285 ls 3, \
28 "test.dat" using 2:3 with points ls 2
Note: See TracBrowser for help on using the repository browser.