1 |
greg |
1.1 |
# |
2 |
|
|
# This file defines a standard scatter plot, |
3 |
|
|
# where a curve is represented by special |
4 |
|
|
# symbols at each point. |
5 |
|
|
# |
6 |
|
|
|
7 |
|
|
include = standard.plt # standard definitions |
8 |
|
|
|
9 |
|
|
symfile = symbols.mta # our symbol file |
10 |
|
|
symsize = 100 # global symbol radius |
11 |
|
|
|
12 |
|
|
# |
13 |
|
|
# Curve defaults: |
14 |
|
|
# |
15 |
|
|
|
16 |
|
|
Asymtype = "triangle" # symbol for A |
17 |
|
|
Asymsize = symsize # symbol radius for A |
18 |
|
|
Athick = 0 # line thickness for A |
19 |
|
|
Acolor = 4 # color for A |
20 |
|
|
|
21 |
|
|
Bsymtype = "square" |
22 |
|
|
Bsymsize = symsize |
23 |
|
|
Bthick = 0 |
24 |
|
|
Bcolor = 2 |
25 |
|
|
|
26 |
|
|
Csymtype = "triangle2" |
27 |
|
|
Csymsize = symsize |
28 |
|
|
Cthick = 0 |
29 |
|
|
Ccolor = 1 |
30 |
|
|
|
31 |
|
|
Dsymtype = "diamond" |
32 |
|
|
Dsymsize = symsize |
33 |
|
|
Dthick = 0 |
34 |
|
|
Dcolor = 3 |
35 |
|
|
|
36 |
|
|
Esymtype = "octagon" |
37 |
|
|
Esymsize = symsize |
38 |
|
|
Ethick = 0 |
39 |
|
|
Ecolor = 4 |
40 |
|
|
|
41 |
|
|
Fsymtype = "crosssquare" |
42 |
|
|
Fsymsize = symsize |
43 |
|
|
Fthick = 0 |
44 |
|
|
Fcolor = 2 |
45 |
|
|
|
46 |
|
|
Gsymtype = "exsquare" |
47 |
|
|
Gsymsize = symsize |
48 |
|
|
Gthick = 0 |
49 |
|
|
Gcolor = 1 |
50 |
|
|
|
51 |
|
|
Hsymtype = "crossdiamond" |
52 |
|
|
Hsymsize = symsize |
53 |
|
|
Hthick = 0 |
54 |
|
|
Hcolor = 3 |