-
Notifications
You must be signed in to change notification settings - Fork 17
/
roi_getact.m
92 lines (84 loc) · 3.64 KB
/
roi_getact.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
% roi_getact() - compute activity of a given ROI (region of interest)
%
% Usage:
% [power, powernorm] = roi_getact(roi_data, ind_roi);
% [power, powernorm] = roi_getact(roi_data, ind_roi, nPCA, zscore);
%
% Inputs:
% roi_data - [times x voxels x trials] source activity data
% ind_roi - indices of voxels for the ROI
% nPCA - number of PCA components (default is 1).
% zscore - [0|1] z-score data (default is 0 or false).
% Copyright (C) Arnaud Delorme, [email protected]
%
% Redistribution and use in source and binary forms, with or without
% modification, are permitted provided that the following conditions are met:
%
% 1. Redistributions of source code must retain the above copyright notice,
% this list of conditions and the following disclaimer.
%
% 2. Redistributions in binary form must reproduce the above copyright notice,
% this list of conditions and the following disclaimer in the documentation
% and/or other materials provided with the distribution.
%
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
% ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
% THE POSSIBILITY OF SUCH DAMAGE.
function [source_roi_data, nPCAs, vx_] = roi_getact(source_voxel_data, ind_roi, nPCA, zscoreflag)
if nargin < 2
help roi_getact;
return;
end
if nargin < 3
nPCA = 1;
end
if nargin < 4
zscoreflag = false;
end
% optional z-scoring, this makes the PCA independent of the power in each
% voxel, and favors to find components that are consistently expressed in
% many voxels rather than only in a few voxels with strong power (which
% may leak from a neighboring region)
data_ = source_voxel_data(:, ind_roi, :);
if zscoreflag
data_(:, :) = zscore(data_(:, :));
end
if nPCA == 1
[source_roi_data, ~, ~] = svds(double(data_(:, :)), 1);
nPCAs = 1;
elseif nPCA == 3
[source_roi_data, ~, ~] = svds(double(data_(:, :)), 3);
nPCAs = 3;
else
% old code
[data_, S_, ~] = svd(data_(:, :), 'econ'); % WARNING SHOULD USE SVDS for SPEED
% however, sometime polarity
% inverted compared to svds
% Should not have an
% incidence but keeping the
% code for now
% variance explained
vx_ = cumsum(diag(S_).^2)./sum(diag(S_).^2);
if nPCA < 1
nPCAs = min(find(vx_ > nPCA));
else
nPCAs = nPCA;
end
% scale components
%tS = diag(S);
%source_roi_data = bsxfun(@times, data_(:, 1:nPCA ), tS(1:nPCA)')/sum(tS(1:nPCA));
source_roi_data = data_(:, 1:nPCAs)*S_(1:nPCAs, 1:nPCAs);
% slightly modified version:
% scale up each ROI as if the nPCA component explain 100% of the variance
% of that ROI
% units still in nA*m
% source_roi_data_corr = source_roi_data .* repmat(sqrt(1./vx_), 1, nPCA, EEG.pnts, EEG.trials);
end