Commit 62489be0 authored by Lucas Russo's avatar Lucas Russo

scripts/matlab/find_acq_*.m: detect false positves and discard them

parent 2b74f8e5
......@@ -3,7 +3,8 @@ function find_acq_non_consecutive(filename)
data=load(filename);
for n = 1:size(data,2)
find_non_consecutive(data(:,n)')
nc = find_non_consecutive(data(:,n)');
nc_wrap = omit_wraparound(data(:,n)', nc, "twoscomplement", 16)
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment