-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindices_plot.m
62 lines (54 loc) · 1.4 KB
/
indices_plot.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
function indices_plot(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,LEFT,RIGHT,split_half,pairwise,leave_one_out,cont,hi_vi,sil,tpd)
if split_half==1
if LEFT==1
plot_split_half(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,1);
end
if RIGHT==1
plot_split_half(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,0);
end
end
if leave_one_out==1
if LEFT==1
plot_leave_one_out(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,1);
end
if RIGHT==1
plot_leave_one_out(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,0);
end
end
if pairwise==1
if LEFT==1
plot_pairwise(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,1);
end
if RIGHT==1
plot_pairwise(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,0);
end
end
if cont==1
if LEFT==1
plot_cont(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,1)
end
if RIGHT==1
plot_cont(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,0)
end
end
if hi_vi==1
if LEFT==1
plot_hi(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,1)
plot_vi(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,1)
end
if RIGHT==1
plot_hi(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,0)
plot_vi(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,0)
end
end
if sil==1
if LEFT==1
plot_sil(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,1)
end
if RIGHT==1
plot_sil(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM,0)
end
end
if tpd==1
plot_tpd(PWD,ROI,SUB_LIST,VOX_SIZE,MAX_CL_NUM)
end