-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbf_output_image_power.m
336 lines (271 loc) · 9.2 KB
/
bf_output_image_power.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
function res = bf_output_image_power(BF, S)
% Computes power image
% Copyright (C) 2012 Wellcome Trust Centre for Neuroimaging
% Vladimir Litvak
% $Id$
%--------------------------------------------------------------------------
if nargin == 0
all = cfg_const;
all.tag = 'all';
all.name = 'All';
all.val = {1};
condlabel = cfg_entry;
condlabel.tag = 'condlabel';
condlabel.name = 'Condition label';
condlabel.strtype = 's';
condlabel.val = {''};
conditions = cfg_repeat;
conditions.tag = 'conditions';
conditions.name = 'Conditions';
conditions.help = {'Specify the labels of the conditions to be included in the inversion'};
conditions.num = [1 Inf];
conditions.values = {condlabel};
conditions.val = {condlabel};
whatconditions = cfg_choice;
whatconditions.tag = 'whatconditions';
whatconditions.name = 'What conditions to include?';
whatconditions.values = {all, conditions};
whatconditions.val = {all};
sametrials = cfg_menu;
sametrials.tag = 'sametrials';
sametrials.name = 'Trials same as for filters';
sametrials.labels = {'yes', 'no'};
sametrials.values = {true, false};
sametrials.val = {false};
sametrials.help = {'Take the same trials as used for filter computation',...
'This is useful for bootstrap.'};
woi = cfg_entry;
woi.tag = 'woi';
woi.name = 'Time windows of interest';
woi.strtype = 'r';
woi.num = [Inf 2];
woi.help = {'Time windows (in ms). N.B. Make sure these windows lie within the covariance window'};
foi = cfg_entry;
foi.tag = 'foi';
foi.name = 'Frequency bands of interest';
foi.strtype = 'r';
foi.num = [Inf 2];
foi.help = {'Frequency windows within which to power changes over (Hz) .N.B. Check this lies within covariance window'};
contrast = cfg_entry;
contrast.tag = 'contrast';
contrast.name = 'Time contrast';
contrast.strtype = 'r';
contrast.num = [1 Inf];
contrast.val = {1};
logpower = cfg_menu;
logpower.tag = 'logpower';
logpower.name = 'Take log of power';
logpower.labels = {'yes', 'no'};
logpower.values = {true, false};
logpower.val = {false};
logpower.help = {'Take the log of power before computing time contrast',...
'This is equivalent to log of the ratio.'};
result = cfg_menu;
result.tag = 'result';
result.name = 'What to output';
result.help = {'Specify output type.'};
result.labels = {
'Single image'
'Image per condition'
'Image per trial'
}';
result.values = {
'singleimage'
'bycondition'
'bytrial'
}';
result.val = {'singleimage'};
scale = cfg_menu;
scale.tag = 'scale';
scale.name = 'Unit-noise-gain';
scale.help = {'Scale power by norm of the filters (unit-noise-gain)'};
scale.labels = {'yes', 'no'};
scale.values = {true, false};
scale.val = {true};
powermethod = cfg_menu;
powermethod.tag = 'powermethod';
powermethod.name = 'Power summary method';
powermethod.help = {'How to summarise the power for vector beamformer'};
powermethod.labels = {'trace', 'lambda1'};
powermethod.values = {'trace', 'lambda1'};
powermethod.val = {'trace'};
modality = cfg_menu;
modality.tag = 'modality';
modality.name = 'Modality';
modality.help = {'Specify modality'};
modality.labels = {
'MEG'
'MEGPLANAR'
'EEG'
}';
modality.values = {
'MEG'
'MEGPLANAR'
'EEG'
}';
modality.val = {'MEG'};
image_power = cfg_branch;
image_power.tag = 'image_power';
image_power.name = 'Power image';
image_power.val = {whatconditions, sametrials, woi, foi, contrast, logpower, result, scale, powermethod, modality};
res = image_power;
return
elseif nargin < 2
error('Two input arguments are required');
end
D = BF.data.D;
S.woi = 1e-3*S.woi; % ms -> s
samples = {};
for i = 1:size(S.woi, 1)
samples{i} = D.indsample(S.woi(i, 1)):D.indsample(S.woi(i, 2));
end
nsamples = unique(cellfun(@length, samples));
if length(nsamples)~=1
error('all windows must be of equal length');
end
windowduration = nsamples/D.fsample;
dctfreq = (0:nsamples-1)/2/windowduration; % DCT frequencies (Hz)
dctT = spm_dctmtx(nsamples,nsamples);
nbands = size(S.foi, 1);
allfreqind=[];
for fband = 1:nbands %% allows one to break up spectrum and ignore some frequencies
freqrange = S.foi(fband,:);
j = find( (dctfreq >= freqrange(1)) & (dctfreq<=freqrange(2)));
allfreqind = [allfreqind j];
end % for fband=1:Nbands
allfreqind = sort(unique(allfreqind));
if isempty(allfreqind)
error('No valid frequency range found');
end
Tband = dctT(:, allfreqind); % filter to this band
if isfield(S.whatconditions, 'all')
S.whatconditions.condlabel = D.condlist;
end
for i = 1:numel(S.whatconditions.condlabel)
if S.sametrials
trials{i} = BF.features.trials(strmatch(S.whatconditions.condlabel{i},...
D.conditions(BF.features.trials)));
else
trials{i} = D.indtrial(S.whatconditions.condlabel{i}, 'GOOD');
end
if isempty(trials{i})
error('No trials matched the selection.');
end
end
if isempty(trials)
error('No trials matched the selection, check the specified condition labels');
end
channels = BF.features.(S.modality).chanind;
U = BF.features.(S.modality).U;
nchan = size(U, 2);
YY = {};
nsamples = unique(cellfun(@length, samples));
if length(nsamples) > 1
error('All time windows should be equal lentgh')
end
alltrials = spm_vec(trials);
ntrials = length(alltrials);
spm('Pointer', 'Watch');drawnow;
spm_progress_bar('Init', ntrials , 'Computing covariance'); drawnow;
if ntrials > 100, Ibar = floor(linspace(1, ntrials ,100));
else Ibar = 1:ntrials; end
sumYY = 0;
N = 0;
for i = 1:ntrials
for j = 1:numel(samples)
Y = U'*squeeze(D(channels, samples{j}, alltrials(i)));
Y = detrend(Y', 'constant')';
Y = Y*Tband;
YY{i, j} = Y*Y';
sumYY = sumYY+YY{i,j};
N = N+length(samples{j});
end
if ismember(i, Ibar)
spm_progress_bar('Set', i); drawnow;
end
end
sumYY = sumYY./N;
spm_progress_bar('Clear');
W = BF.inverse.(S.modality).W;
nvert = numel(W);
Cy = {};
condind = spm_unvec(1:ntrials, trials);
switch S.result
case 'singleimage'
for i = 1:size(YY, 2)
Cy{1, i} = squeeze(sum(cat(3, YY{:, i}), 3))./((nsamples-1)*ntrials);
end
case 'bycondition'
for c = 1:numel(condind)
for i = 1:size(YY, 2)
Cy{c, i} = squeeze(sum(cat(3, YY{condind{c}, i}), 3))./((nsamples-1)*length(condind{c}));
end
end
case 'bytrial'
for c = 1:ntrials
for i = 1:size(YY, 2)
Cy{c, i} = YY{c, i}./(nsamples-1);
end
end
end
spm('Pointer', 'Watch');drawnow;
scale = eye(nchan);
for c = 1:size(Cy, 1)
spm_progress_bar('Init', nvert, ...
sprintf('Scanning grid points image %d/%d', c, size(Cy, 1))); drawnow;
if nvert > 100, Ibar = floor(linspace(1, nvert,100));
else Ibar = 1:nvert; end
pow = nan(1, nvert);
cpow = zeros(1, numel(Cy(c, :)));
for i = 1:nvert
if ~isnan(W{i})
w = W{i};
for j = 1:numel(Cy(c, :))
p = real(w*Cy{c, j}*w');
if isscalar(p) || isequal(S.powermethod, 'trace')
cpow(j) = trace(p);
if S.scale
np = trace(w*scale*w');
cpow(j) = cpow(j)./np;
end
elseif isequal(S.powermethod, 'lambda1')
[u,s,v] = svd(real(p));
cpow(j) = s(1);
if S.scale
w = u(:, 1)'*w;
np = w*scale*w';
cpow(j) = cpow(j)./np;
end
else
error('Unsupported option')
end
end
if S.logpower
pow(i) = log(cpow)*S.contrast';
else
pow(i) = cpow*S.contrast';
end
end
if ismember(i, Ibar)
spm_progress_bar('Set', i); drawnow;
end
end
spm_progress_bar('Clear');
image(c).val = pow;
switch S.result
case 'singleimage'
image(c).label = ['uv_pow_' spm_file(D.fname, 'basename')];
case 'bycondition'
image(c).label = ['uv_pow_cond_' S.whatconditions.condlabel{c} '_' spm_file(D.fname, 'basename')];
case 'bytrial'
for k = 1:numel(condind)
if any(c == condind{k})
break;
end
end
image(c).label = ['uv_pow_cond_' S.whatconditions.condlabel{k}...
'_trial_' num2str(alltrials(c)) '_' spm_file(D.fname, 'basename')];
end
end
spm('Pointer', 'Arrow');drawnow;
res = image;