-
Notifications
You must be signed in to change notification settings - Fork 768
Expand file tree
/
Copy pathft_preproc_derivative.m
More file actions
57 lines (51 loc) · 1.74 KB
/
Copy pathft_preproc_derivative.m
File metadata and controls
57 lines (51 loc) · 1.74 KB
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
function [dat] = ft_preproc_derivative(dat, order, deltat)
% FT_PREPROC_DERIVATIVE computes the temporal Nth order derivative of the
% data
%
% Use as
% [dat] = ft_preproc_derivative(dat, order, deltat)
% where
% dat data matrix (Nchans X Ntime)
% order number representing the Nth derivative (default = 1)
% deltat number representing the duration of 1 time step in the data
% (default = 1)
%
% If the data contains NaNs, these are ignored for the computation, but
% retained in the output.
%
% See also PREPROC
% Copyright (C) 2008, Robert Oostenveld
% Copyright (C) 2023, Jan-Mathijs Schoffelen
%
% 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$
% set the defaults if options are not specified
if nargin<2 || isempty(order)
order = 1;
end
if nargin<3 || isempty(deltat)
deltat = 1;
end
% preprocessing fails on channels that contain NaN
if any(isnan(dat(:)))
ft_warning('FieldTrip:dataContainsNaN', 'data contains NaN values');
end
% compute the derivative
for i=1:order
dat = gradient(dat)./deltat;
end