-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplotTables.m
46 lines (40 loc) · 959 Bytes
/
plotTables.m
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
function plotTables(iters,correction)
load(date);
figure;
subplot(2,2,1);
imagesc(HTr);
colormap(hot);
colorbar;
xlabel('Parameter multiplier') % x-axis label
ylabel('Numbers') % y-axis label
set(gca,'xtick',1:iters);
set(gca,'xticklabel',correction);
set(gca,'yticklabel',[0:9]);
subplot(2,2,2);
imagesc(HTe);
colormap(hot);
colorbar;
xlabel('Parameter multiplier') % x-axis label
ylabel('Numbers') % y-axis label
set(gca,'xtick',1:iters);
set(gca,'xticklabel',correction);
set(gca,'yticklabel',[0:9]);
subplot(2,2,3);
imagesc(STr);
colormap(hot);
colorbar;
xlabel('Parameter multiplier') % x-axis label
ylabel('Numbers') % y-axis label
set(gca,'xtick',1:iters);
set(gca,'xticklabel',correction);
set(gca,'yticklabel',[0:9]);
subplot(2,2,4);
imagesc(STe);
colormap(hot);
colorbar;
xlabel('Parameter multiplier') % x-axis label
ylabel('Numbers') % y-axis label
set(gca,'xtick',1:iters);
set(gca,'xticklabel',correction);
set(gca,'yticklabel',[0:9]);
end