forked from fieldtrip/fieldtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_appendtimelock.m
130 lines (116 loc) · 5.04 KB
/
ft_appendtimelock.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
function [timelock] = ft_appendtimelock(cfg, varargin)
% FT_APPENDTIMELOCK concatenates multiple timelock (ERP/ERF) data structures that
% have been processed separately. If the input data structures contain different
% channels, it will be concatenated along the channel direction. If the channels are
% identical in the input data structures, the data will be concatenated along the
% repetition dimension.
%
% Use as
% combined = ft_appendtimelock(cfg, timelock1, timelock2, ...)
%
% The configuration can contain
% cfg.appenddim = string, the dimension to concatenate over which to append,
% this can be 'chan' and 'rpt' (default is automatic)
% cfg.tolerance = scalar, tolerance to determine how different the time axes
% are allowed to still be considered compatible (default = 1e-5)
% cfg.keepsampleinfo = 'yes', 'no', 'ifmakessense' (default = 'ifmakessense')
%
% See also FT_TIMELOCKANALYSIS, FT_DATATYPE_TIMELOCK, FT_APPENDDATA, FT_APPENDFREQ,
% FT_APPENDSOURCE, FT_APPENDSENS
% Copyright (C) 2011-2018, Robert Oostenveld
%
% This file is part of FieldTrip, see http://www.fieldtriptoolbox.org
% 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$
% these are used by the ft_preamble/ft_postamble function and scripts
ft_revision = '$Id$';
ft_nargin = nargin;
ft_nargout = nargout;
% do the general setup of the function
ft_defaults
ft_preamble init
ft_preamble debug
ft_preamble loadvar varargin
ft_preamble provenance varargin
% the ft_abort variable is set to true or false in ft_preamble_init
if ft_abort
return
end
% set the defaults
cfg.channel = ft_getopt(cfg, 'channel', 'all');
cfg.parameter = ft_getopt(cfg, 'parameter', []);
cfg.appenddim = ft_getopt(cfg, 'appenddim', []);
cfg.tolerance = ft_getopt(cfg, 'tolerance', 1e-5); % this is passed to append_common, which passes it to ft_selectdata
cfg.appendsens = ft_getopt(cfg, 'appendsens', 'no');
cfg.keepsampleinfo = ft_getopt(cfg, 'keepsampleinfo', 'no');
try
% although not 100% robust, this could make some users becoming aware of the issue of overlapping trials
for i=1:numel(varargin)
dataset{i} = ft_findcfg(varargin{i}.cfg, 'dataset');
hassampleinfo(i) = isfield(varargin{i}, 'sampleinfo');
end
if ~all(strcmp(dataset, dataset{1})) && ~strcmp(cfg.keepsampleinfo, 'no')
ft_warning('the data originates from different recordings on disk');
ft_warning('please consider specifying cfg.keepsampleinfo=''no''')
end
end % try
% ensure that the input data is valid for this function
for i=1:length(varargin)
varargin{i} = ft_checkdata(varargin{i}, 'datatype', {'timelock+comp', 'timelock'}, 'feedback', 'yes', 'hassampleinfo', cfg.keepsampleinfo);
end
if isempty(cfg.appenddim) || strcmp(cfg.appenddim, 'auto')
if checkchan(varargin{:}, 'identical') && checktime(varargin{:}, 'identical', cfg.tolerance)
cfg.appenddim = 'rpt';
elseif checktime(varargin{:}, 'identical', cfg.tolerance) && ~checkchan(varargin{:}, 'unique')
cfg.appenddim = 'rpt';
elseif checkchan(varargin{:}, 'unique')
cfg.appenddim = 'chan';
elseif checktime(varargin{:}, 'unique', cfg.tolerance)
cfg.appenddim = 'time';
else
ft_error('cfg.appenddim should be specified');
end
end
ft_info('concatenating over the "%s" dimension\n', cfg.appenddim);
if isempty(cfg.parameter)
fn = fieldnames(varargin{1});
for i=2:numel(varargin)
fn = intersect(fn, fieldnames(varargin{i}));
end
cfg.parameter = setdiff(fn, ignorefields('appendtimelock'));
elseif ischar(cfg.parameter)
cfg.parameter = {cfg.parameter};
end
assert(~isempty(cfg.parameter), 'cfg.parameter should be specified');
if any(strcmp(cfg.parameter, 'avg')) && any(strcmp(cfg.parameter, 'trial'))
ft_warning('appending the individual trials, not the averages');
% also prevent var and dof from being appended
cfg.parameter = setdiff(cfg.parameter, {'avg', 'var', 'dof'});
end
% use a low-level function that is shared with the other ft_appendxxx functions
timelock = append_common(cfg, varargin{:});
if isfield(timelock, 'avg') && ~isfield(timelock, 'trial')
ft_warning('renaming the appended averages to "trial"');
timelock.trial = timelock.avg;
timelock = rmfield(timelock, 'avg');
end
% do the general cleanup and bookkeeping at the end of the function
ft_postamble debug
ft_postamble previous varargin
ft_postamble provenance timelock
ft_postamble history timelock
ft_postamble savevar timelock