Skip to content

Commit

Permalink
Update DPE_module.m
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio-Vicenzo authored Dec 26, 2024
1 parent 9955592 commit 0c494d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Common/DPE_module.m
Original file line number Diff line number Diff line change
Expand Up @@ -197,11 +197,11 @@
if strcmp(settings.dataType,'int16')
fseek(fid, ...
settings.fileType*...
((trackResults(activeChnList(j)).absoluteSample(closestIndex)-1)*2),'bof');
((trackResults(activeChnList(j)).absoluteSample(closestIndex))*2),'bof');
else
fseek(fid, ...
settings.fileType*...
(trackResults(activeChnList(j)).absoluteSample(closestIndex)-1),'bof');
(trackResults(activeChnList(j)).absoluteSample(closestIndex)),'bof');
end

% === Update the phasestep based on code freq (variable) and ======
Expand Down

0 comments on commit 0c494d5

Please sign in to comment.