-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeg_prosody_single.sce
More file actions
78 lines (66 loc) · 1.27 KB
/
meg_prosody_single.sce
File metadata and controls
78 lines (66 loc) · 1.27 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
write_codes = false;
pulse_width = 2;
#no_logfile = false;
#active_buttons = 1;
#button_codes = 3;
#target_button_codes = 3;
randomize_trials = false;
default_attenuation = 0.2;
default_pan = 0.0;
begin;
array {
sound { wavefile { filename = "audio\\1_ang_ss_trimF.wav"; } s1_ang_ss_trimF;};
sound { wavefile { filename = "audio\\1_fea_ss_trimF.wav"; } s1_fea_ss_trimF;};
sound { wavefile { filename = "audio\\1_fea_sw_trimF.wav"; } s1_fea_sw_trimF;};
} stim;
#array<int> stim_order[78] = {,,,};
picture {
bitmap {
filename = "img\\cross.bmp";
};
x = 0; y = 0;
}cross;
picture {
bitmap {
filename = "img\\Emoticons_H.bmp";
};
x = 0; y = 0;
}emoticons;
LOOP $x 1;
trial {
trial_duration = stimuli_length;
picture cross;
sound {
wavefile s1_ang_ss_trimF;
};
code = "s1_ang_ss_trimF";
port_code = 2;
picture emoticons;
deltat = 1500;
duration = 2300;
};
trial {
trial_duration = stimuli_length;
picture cross;
sound {
wavefile s1_fea_ss_trimF;
};
code = "s1_fea_ss_trimF;";
port_code = 2;
picture emoticons;
deltat = 1500;
duration = 2300;
};
trial {
trial_duration = stimuli_length;
picture cross;
sound {
wavefile s1_fea_sw_trimF;
};
code = "s1_fea_sw_trimF";
port_code = 2;
picture emoticons;
deltat = 1500;
duration = 2300;
};
ENDLOOP;