-
Notifications
You must be signed in to change notification settings - Fork 16
/
phasegradient.m
78 lines (66 loc) · 1.9 KB
/
phasegradient.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
function [gfx, gfy, badChannels] = phasegradient(f, badChannels, angleFlag, surroundLocs)
% Calculates the phase gradient of complex matrix F
%
% Rory Townsend, Aug 2017
sf = size(f);
f = f(:,:,:);
% Set default inputs
if nargin < 2
badChannels = find(isnan(sum(f, 3)));
end
if nargin < 3
angleFlag = true;
end
if nargin < 4
surroundLocs = [];
end
% For now, don't use SURROUNDLOCS: MATLAB's gradient function is faster and
% more accurate
surroundLocs = [];
% Convert phase data to complex coefficients
if angleFlag && isreal(f)
f = exp(1i*f);
end
% Convert complex data to amplitudes
if ~angleFlag && ~isreal(f)
f = abs(f);
end
% Find channels with zero amplitude, as these will cause problems
if angleFlag
badChannels = union(badChannels, find(any(abs(f)==0,3)));
% Smooth out bad channels
f = interpolateDeadElectrodes(f, badChannels);
end
% Iteratively calculate gradient
gfx = zeros(size(f));
gfy = gfx;
for it = 1:size(f, 3)
if angleFlag
% Use modified MATLAB inbuilt function
[igfx, igfy] = phasegradientMATLAB(angle(f(:,:,it)), angleFlag);
gfx(:,:,it) = -igfx;
gfy(:,:,it) = -igfy;
else
% Regular gradient
[igfx, igfy] = normalGrad(f(:,:,it), surroundLocs);
gfx(:,:,it) = igfx;
gfy(:,:,it) = igfy;
end
end
% Reshape gradients to be the same size as f
gfx = reshape(gfx, sf);
gfy = reshape(gfy, sf);
end
function [frow, fcol] = normalGrad(f, surroundLocs)
% Choose method to calculate regular, non-circular gradient
if ~isempty(surroundLocs)
% If optional input SURROUNDLOCS is given, use the more accurate stencil
% provided to calculate gradient (but may be slower)
frow = reshape(surroundLocs.dy * f(:), size(f));
fcol = reshape(surroundLocs.dx * f(:), size(f));
else
% Otherwise just use MATLAB's built-in gradient function
[frow, fcol] = gradient(f);
end
end