forked from kndiaye/matlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decours.m
256 lines (227 loc) · 6.17 KB
/
decours.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
function [capt]=decours(chnames, data, imod, allcond, PlotLat, Filtering, Ncond)
% decours(chnames, data[, imod,allcond,PlotLat, Filtre])
% Affiche les décours du signal sur une liste de capteurs
% en fonction de la durée de stimulation
% data est au format data.G, data.Channel
% ex. decours({'mrt14'} , data)
% Si chnames est une 'cell' sur plusieurs lignes, 'decours' affiche les MOYENNES
% des capteurs sur chaque ligne
%
% > allcond = 1 pour avoir les plots sur la meme figure
% > imod = 1 pour l'auditif seul, 2 pour visuel, 3:les deux [bugge !], 0:demande
% > PlotLat = 1 pour qu'il place un ppoint sur la latence sur max
% > Filtre = 1 : slidingwindows, 2: lpass, 0:none
COLORS={[0 0 0], [ .2 .7 .2], [0 0 1], [1 0 1] , [1 0 0]};
COL2={[1 0 0], [0 1 0], [0 0 1]};
global CONDS
CONDS={'TC', 'C','S','L','TL'} ;
CONDS={'C', 'IC','S','IL','L'} ;
MODAL={'Auditory' 'Visual'};
if nargin < 2
return
end
if nargin < 4
% Graphs on the same figure
allcond=1;
end
if nargin < 5
PlotLat=0;
end
if nargin < 6
Filtering=0;
end
if nargin < 7
Ncond=5;
end
disp(fprintf('%d conditions', Ncond));
if isfield(data,'Time')
Time=data.Time;
else
global Time
end
if ~iscell(chnames) & ischar(chnames)
chnames=cellstr(chnames);
if size(chnames,1)>1
chnames=chnames';
end
end
if isfield(data,'G') & iscell(data.G)
if nargin<3
ButtonName=questdlg('Which modality?', 'Question', 'Auditory','Visual', 'Both', 'cancel');
switch ButtonName,
case 'Auditory',
F=data.G{1};
imod=1;
case 'Visual',
F=data.G{2};
imod=2;
case 'Both',
imod=3;
otherwise
return
end % switch
else
F=data.G{imod};
end
elseif isfield(data,'F')
F=data.F;
data.G=F;
end
if isfield(data,'F')
data=rmfield(data,'F');
end
if ischar(chnames)
chnames=cellstr(chnames);
end
if isnumeric(chnames)
chnames={data.Channel(chnames).Name};
end
if size(chnames,1)>1
% Dans le cas où l'on veut avoir des groupes d'électrodes on les
% indique en colonnes
num=1:size(chnames,1);
for j=num
id=whichChannel(chnames(j,:), data.Channel, 'exact');
disp(sprintf('Averaging %d electrodes', length(id)))
if ~allcond & chnames{j,1}(1)=='M'
rev=1-2*(chnames{j,:}(2)=='L')
% reverse signal for meg !
switch ndims(F)
case 3
data.F(j,:,:)=rev*mean(F(id,:,:),1);
case 2
data.F(j,:)=rev*mean(F(id,:),1);
end
else
switch ndims(F)
case 3
data.F(j,:,:)=mean(F(id,:,:),1);
case 2
data.F(j,:)=mean(F(id,:),1);
end
end
chnames2{j}=sprintf('Group.%d',j);
end
chnames2{1}='Right electrodes';
chnames2{2}='Left electrodes';
if size(chnames,2)>1
chnames=chnames2;
end
else
num=1:length(chnames);
for j=num
id=whichChannel(chnames(j), data.Channel, 'exact');
disp(sprintf('Averaging %d electrodes', length(id)))
switch ndims(F)
case 3
data.F(j,:,:)=mean(F(id,:,:),1);
case 2
data.F(j,:)=mean(F(id,:),1);
end
end
end
if Filtering
disp('Filtering data')
switch Filtering
case 1,
disp('Sliding windows')
data.F=slidingwindows(data.F);
case 2,
disp('Low Pass')
data.F=lpass(data.F);
case 3
filter=20;
disp(sprintf('Low Pass %fHz', filter));
data.F=lpass(data.F, filter);
otherwise
filter=Filtering;
disp(sprintf('Low Pass %fHz', filter));
data.F=lpass(data.F, filter);
end
end
if ~allcond
for j=1:size(data.F,3)
f(j)=figure(j);
clf
hold on
end
else
for j=num
f(j)=figure;
clf
hold on
end
end
set(f,'Color', [1 1 1])
for j=num
p=[];
if allcond
% Une figure par channel, plusieurs cond sur la meme
figure(f(j));
set(f(j), 'Name', chnames{j});
ax(j)=gca;
set(gca, 'Fontsize', 15)
if Ncond==3
p=plot3cond(squeeze(data.F(j,:,:)));
else
p=plot5cond(squeeze(data.F(j,:,:)));
end
if PlotLat
addPlotLat(data.F(j,:,:));
end
hold off
if ~isfield(data, 'Title')
titletxt{j}=[MODAL{imod} ' - ' chnames{j}];
else
titletxt{j}=[data.Title chnames{c}];
end
legtxt=CONDS;
else
% Same figure for different channels, one figure by condition
for d=1:size(data.F,3)
figure(f(d));
set(f(d), 'Name', ['Condition: ' CONDS{d}]);
F=data.F(j,:,d); %ipermute(lpass(permute(data.F(j,:,d),[1 3 2]),4),[1 3 2]);
p=[p plot(Time, F)];
ax(d)=gca;
if ~isfield(data, 'Title')
titletxt{d}=[MODAL{imod} ' - ' CONDS{d}];
else
titletxt{d}=[data.Title CONDS{d}]
end
end
legtxt=chnames;
set(p,'Color', COL2{j})
set(p,'LineWidth', 2)
end
end
if size(data.F,2)==938
set(ax, 'XLim', [-0.1 1.4])
end
for a=1:length(ax)
if max(abs(get(ax(a), 'YLim')))<1e-10
axes(ax(a))
ylabel('Magnetic Field (T)')
elseif max(abs(get(ax(1), 'YLim')))<1e-4
axes(ax(a))
ylabel('Electric Potential (V)')
set(ax(a),'YDir', 'reverse')
end
settitle(ax(a), titletxt{a});
h=legend(legtxt);
set(h,'Position', [0.83 0.70 0.1643 0.2869])
end
function []=settitle(h,t)
global CONDS
axes(h)
ttl=title([t],'FontSize', 14);
posttl=get(ttl, 'Position');
set(ttl, 'Position', [0.7 posttl(2) posttl(3)])
xlabel('Time')
xlim=[-0.1 1.4];
set(gca, 'xlim', xlim)
set(gca, 'xgrid', 'on')
set(gca, 'Box', 'on')
hold on
plot(xlim, xlim*0,':','Color', [.5 .5 .5])
hold off