-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_HCP_task_contrasts.m
73 lines (56 loc) · 2.14 KB
/
get_HCP_task_contrasts.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
62
63
64
65
66
67
68
69
70
71
72
73
function task_contrasts = get_HCP_task_contrasts
tasks = {'SOCIAL', 'MOTOR', 'GAMBLING', 'WM', 'LANGUAGE', 'EMOTION', 'RELATIONAL'};
%% SOCIAL
task_contrasts.SOCIAL = {'social_random';
'social_tom';
'social_tom_random'};
%% MOTOR
task_contrasts.MOTOR = {'motor_cue';
'motor_lf';
'motor_lh';
'motor_rf';
'motor_rh';
'motor_t';
'motor_avg';
'motor_cue_avg';
'motor_lf_avg';
'motor_lh_avg';
'motor_rf_avg';
'motor_rh_avg';
'motor_t_avg'};
%% GAMBLING
task_contrasts.GAMBLING = {'gambling_punish';
'gambling_reward';
'gambling_punish_reward'};
%% WM
task_contrasts.WM = {'wm_2bk_body';
'wm_2bk_face';
'wm_2bk_place';
'wm_2bk_tool';
'wm_0bk_body';
'wm_0bk_face';
'wm_0bk_place';
'wm_0bk_tool';
'wm_2bk';
'wm_0bk';
'wm_2bk_0bk';
'wm_body';
'wm_face';
'wm_place';
'wm_tool';
'wm_body_avg';
'wm_face_avg';
'wm_place_avg';
'wm_tool_avg'};
%% LANGUAGE
task_contrasts.LANGUAGE = {'language_math';
'language_story';
'language_math_story'};
%% EMOTION
task_contrasts.EMOTION = {'emotion_faces';
'emotion_shapes';
'emotion_faces_shapes'};
%% RELATIONAL
task_contrasts.RELATIONAL = {'relational_match';
'relational_rel';
'relational_match_rel'};