Skip to content
Snippets Groups Projects
Commit 20e902a1 authored by leprob001's avatar leprob001
Browse files

Offsets/Drifts that are not calculated are now set to NaN on calculation.

parent 283eb0a8
No related branches found
No related tags found
No related merge requests found
161
\ No newline at end of file
162
\ No newline at end of file
......@@ -19,6 +19,11 @@ end
optimumColumnOffsetName = 'OptimumTotalOffset';
optimumColumnDriftName = 'OptimumTotalDrift';
%% Reset all to NaN
offsets{:, optimumColumnOffsetName} = NaN;
offsets{:, optimumColumnDriftName} = NaN;
artoaWorkspace.editOffsets.soundspeed{'Soundspeed', 'Optimum'} = NaN;
%% Store values
varNames = X.Properties.RowNames;
for i = 1:length(varNames)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment