-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun_eeg_procs.m
54 lines (46 loc) · 1004 Bytes
/
run_eeg_procs.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
function run_eeg_procs()
% Scripts to manipulate EEG data
%
% by Bruno Melo ([email protected])
% Preparing components (eeglab, matlab-utils)
includeDeps;
clc;
%% Setup of processing
config = setup('neutral_length', 10);
% Configuring Grand Average
config.gavg_filter = @erd_ers;
config.gavg_filter_params = {};
config.ignore = {
1, [48]
2, [18 48]
3, [49]
4, [9 10 20 31 44 45 54 59]
5, [31 34]
6, [32 41 63]
9, [48]
10, [13 59]
13, [27]
14, [29 56]
15, [27]
};
% Executing according to config variable
run_procs(config);
%{
Canais com problema:
SUBJ001 - C5
SUBJ002 - C5, Cz
SUBJ003 - C6
SUBJ004 - O1,O2,Oz,PO2,PO3,PO4,PO8,FT7
SUBJ005 - C1,POz*
SUBJ006 - CPz, F1, FC4*
SUBJ007 - nada
SUBJ008 - nada
SUBJ009 - C5*
SUBJ010 - T7*, PO8*
SUBJ011 - nada
SUBJ012 - nada
SUBJ013 - CP5*
SUBJ014 - TP9, TP7
SUBJ015 - CP5
* canais que começaram bem, mas ficaram ruins no decorrer da tarefa
%}