Skip to content

Commit

Permalink
FIX - removed tilde in output arg list from function call
Browse files Browse the repository at this point in the history
  • Loading branch information
schoffelen committed Aug 30, 2024
1 parent 8638b9f commit 8870bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ft_denoise_amm.m
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
v = pos;
n = ori;
vrange = abs((max(v)-min(v)));
[~, ind] = max(vrange);
[tmp, ind] = max(vrange);
[o, r] = spheroid_fit(v, ind);

if (ind~=2)
Expand Down

0 comments on commit 8870bfd

Please sign in to comment.