forked from fieldtrip/fieldtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_multiplotCC.m
142 lines (122 loc) · 4.48 KB
/
ft_multiplotCC.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
function [cfg] = ft_multiplotCC(cfg, data)
% FT_MULTIPLOTCC visualises the coherence between channels by using
% multiple topoplots. The topoplot at a given channel location shows the
% coherence of that channel with all other channels.
%
% Use as
% ft_multiplotCC(cfg, data)
%
% See also FT_PREPARE_LAYOUT, FT_TOPOPLOTCC, FT_CONNECTIVITYPLOT
% Undocumented local options:
% cfg.layout = layout filename or a structure produced by prepare_layout
% cfg.xlim
% cfg.parameter
% This function requires input from FT_FREQSTATISTICS_SHIFTPREDICT
% This function should be rewritten, using the clean topoplot implementation
% Copyright (C) 2005-2006, Jan-Mathijs Schoffelen, Robert Oostenveld
%
% This file is part of FieldTrip, see http://www.ru.nl/neuroimaging/fieldtrip
% for the documentation and details.
%
% FieldTrip is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% FieldTrip is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with FieldTrip. If not, see <http://www.gnu.org/licenses/>.
%
% $Id$
revision = '$Id$';
% do the general setup of the function
ft_defaults
ft_preamble init
ft_preamble provenance
ft_preamble trackconfig
ft_preamble debug
% the abort variable is set to true or false in ft_preamble_init
if abort
return
end
% check if the input data is valid for this function
data = ft_checkdata(data);
% check if the input cfg is valid for this function
cfg = ft_checkconfig(cfg, 'renamed', {'zparam', 'parameter'});
cfg = ft_checkconfig(cfg, 'deprecated', {'xparam'});
% if ~isfield(cfg, 'layout'), cfg.layout = 'CTF151.lay'; end;
if ~isfield(cfg, 'xparam'), cfg.xparam = 'foi'; end;
if ~isfield(cfg, 'xlim'), cfg.xlim = 'all'; end;
if ~isfield(cfg, 'parameter'), cfg.parameter = 'avg.icohspctrm'; end;
if strcmp(cfg.parameter, 'avg.icohspctrm') && ~issubfield(data, 'avg.icohspctrm'),
data.avg.icohspctrm = abs(imag(data.avg.cohspctrm));
end
if strcmp(data.dimord, 'refchan_chan_freq'),
% reshape input-data, such that ft_topoplotTFR will take it
cnt = 1;
siz = size(data.prob);
data.labelcmb = cell(siz(1)*siz(2),2);
data.prob = reshape(data.prob, [siz(1)*siz(2) siz(3)]);
data.stat = reshape(data.stat, [siz(1)*siz(2) siz(3)]);
for j = 1:length(data.label)
for k = 1:length(data.reflabel)
data.labelcmb(cnt,:) = [data.reflabel(k) data.label(j)];
cnt = cnt + 1;
end
end
tmpdata = data;
else
dat = getsubfield(data, cfg.parameter);
scale = [0 max(dat(:))-0.2];
end
if isfield(cfg, 'xparam'),
xparam = getsubfield(data, cfg.xparam);
if ~strcmp(cfg.xlim, 'all'),
fbin = [nearest(xparam, cfg.xlim(1)) nearest(xparam, cfg.xlim(2))];
else
fbin = [xparam(1) xparam(end)];
end
end
% R=read or create the layout that will be used for plotting
lay = ft_prepare_layout(cfg, varargin{1});
cfg.layout = lay;
ft_plot_lay(lay, 'box', false,'label','no','point','no');
[chNum,X,Y,Width,Height,Lbl] = textread(cfg.layout,'%f %f %f %f %f %s');
xScaleFac = 1/(max(Width)+ max(X) - min(X));
yScaleFac = 1/(max(Height)+ max(Y) - min(Y));
Xpos = xScaleFac*(X-min(X));
Ypos = 0.9*yScaleFac*(Y-min(Y));
for k=1:length(chNum) - 2
subplotOL('position',[Xpos(k) Ypos(k)+(Height(k)*yScaleFac) Width(k)*xScaleFac*2 Height(k)*yScaleFac*2])
config.layout = cfg.layout;
if exist('tmpdata'),
config.style = 'straight';
config.marker = 'off';
try, config.refmarker = strmatch(Lbl(k), data.reflabel);
catch, config.refmarker = strmatch(Lbl(k), data.label); end
config.interplimits = 'electrodes';
if isfield(cfg, 'xparam'),
config.xparam = cfg.xparam;
config.xlim = xparam;
else
config.xparam = 'time';
config.xlim = [k-0.5 k+0.5];
end
config.parameter = cfg.parameter;
config.refchannel = Lbl(k);
config.colorbar = 'no';
config.zlim = scale;
config.grid_scale = 30;
ft_topoplotTFR(config, data);
drawnow;
end
end
% do the general cleanup and bookkeeping at the end of the function
ft_postamble debug
ft_postamble trackconfig
ft_postamble provenance
ft_postamble previous data