-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHRR_GP_sanity.m
47 lines (36 loc) · 1.06 KB
/
HRR_GP_sanity.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
%load('mat/HRR_subject_kernel_subj=1_K=10_N=10_E=0.050_nsamples=10_sigma_w=1.mat')
%load('mat/HRR_subject_kernel_subj=1_K=10_N=10_E=0.050_nsamples=10_sigma_w=1.000_norm=1.mat');
load('../py_vgdl/mat/HRR_subject_kernel_subj=32_K=10_N=10_E=0.050_nsamples=100_sigma_w=1.000_norm=1.mat');
figure;
subplot(2,4,1);
imagesc(theory_kernel);
title('theory_kernel', 'interpreter', 'none');
colorbar;
subplot(2,4,2);
imagesc(sprite_kernel);
title('sprite_kernel', 'interpreter', 'none');
colorbar;
subplot(2,4,3);
imagesc(interaction_kernel);
title('interaction_kernel', 'interpreter', 'none');
colorbar;
subplot(2,4,4);
imagesc(termination_kernel);
title('termination_kernel', 'interpreter', 'none');
colorbar;
subplot(2,4,5);
imagesc(theory_Xx);
title('theory_Xx', 'interpreter', 'none');
colorbar;
subplot(2,4,6);
imagesc(sprite_Xx);
title('sprite_Xx', 'interpreter', 'none');
colorbar;
subplot(2,4,7);
imagesc(interaction_Xx);
title('interaction_Xx', 'interpreter', 'none');
colorbar;
subplot(2,4,8);
imagesc(termination_Xx);
title('termination_Xx', 'interpreter', 'none');
colorbar;