Skip to content

Commit

Permalink
V9.10
Browse files Browse the repository at this point in the history
update DQ_preav
  • Loading branch information
ammsimmons committed Feb 15, 2023
1 parent 7c6bab6 commit e29d88c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions GUIs/DQ_preavg.m
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,15 @@ function DQ_preavg_OpeningFcn(hObject, eventdata, handles, varargin)
handles.dq_times = dq_times_def;
handles.DQ_spec = [];
else
dq_times_def = oldDQ(3).times;
handles.dq_times = dq_times_def;
handles.DQ_spec = oldDQ;
try
dq_times_def = oldDQ(3).times;
handles.dq_times = dq_times_def;
handles.DQ_spec = oldDQ;
catch
dq_times_def = [1:6;-100:100:400;0:100:500]';
handles.dq_times = dq_times_def;
handles.DQ_spec = oldDQ;
end
end

% Is averager or DQ Table on a pre-AVG?
Expand Down

0 comments on commit e29d88c

Please sign in to comment.