-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot8.m
More file actions
89 lines (74 loc) · 1.53 KB
/
plot8.m
File metadata and controls
89 lines (74 loc) · 1.53 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
% Script for generating graphs comparing representations, rules and
% saliency effects.
rules = char('basic','rw','template','neuromod');
backgrounds = [1 1 .8; 1 0.9 0.8; 1 1 0.7; 0.96 .85 0.85];
% elemental
elements
representation='elemental';
figure;
for j=1:4
rule=deblank(rules(j,:));
for i=1:2
subplot(4,2,2*j-2+i)
salient = i-1;
compare_models
set(gca,'Color',backgrounds(j,:))
end
end
set(gcf,'Color',[.75,.85,.69])
% unique cue
unique_cue
representation='unique cue';
figure;
for j=1:4
rule=deblank(rules(j,:));
for i=1:2
subplot(4,2,2*j-2+i)
salient = i-1;
compare_models
set(gca,'Color',backgrounds(j,:))
end
end
set(gcf,'Color',[.76,1,.76])
% configural
configural
representation='configural';
figure;
for j=1:4
rule=deblank(rules(j,:));
for i=1:2
subplot(4,2,2*j-2+i)
salient = i-1;
compare_models
set(gca,'Color',backgrounds(j,:))
end
end
set(gcf,'Color',[0.75,.85,.85])
% overlap
pearce
representation='pearce';
figure;
for j=1:4
rule=deblank(rules(j,:));
for i=1:2
subplot(4,2,2*j-2+i)
salient = i-1;
compare_models
set(gca,'Color',backgrounds(j,:))
end
end
set(gcf,'Color',[.75,0.94,1])
% context
context
representation='context';
figure;
for j=1:4
rule=deblank(rules(j,:));
for i=1:2
subplot(4,2,2*j-2+i)
salient = i-1;
compare_models
set(gca,'Color',backgrounds(j,:))
end
end
set(gcf,'Color',[0.72,0.78,.71])