- Timestamp:
- May 18, 2014, 2:26:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series.m
r776 r777 1768 1768 end 1769 1769 end 1770 max_walltime=3600*2 4; % 24h max total calculation1770 max_walltime=3600*20; % 20h max total calculation (cannot exceed 24 h) 1771 1771 walltime_onejob=600;%seconds, max estimated time for asingle file index value 1772 1772 filename_joblist=fullfile(DirOAR,'job_list.txt');%create name of the global executable file … … 3235 3235 ListViewValue=find(ListViewLines==iview); 3236 3236 end 3237 ref_i=str2num(get(handles.num_first_i,'String')); 3238 ref_j=str2num(get(handles.num_first_j,'String')); 3237 3239 [ModeMenu,ModeValue]=update_mode(SeriesData.i1_series{iview},SeriesData.i2_series{iview},SeriesData.j2_series{iview}); 3238 3240 displ_pair=update_listpair(SeriesData.i1_series{iview},SeriesData.i2_series{iview},SeriesData.j1_series{iview},SeriesData.j2_series{iview},ModeMenu{ModeValue},... 3239 SeriesData.Time{iview},TimeUnit, SeriesData.ref_i,SeriesData.ref_j,SeriesData.FileInfo{iview});3241 SeriesData.Time{iview},TimeUnit,ref_i,ref_j,SeriesData.FileInfo{iview}); 3240 3242 % first raw of the GUI 3241 3243 uicontrol('Style','text','Units','normalized', 'Position', [0.05 0.88 0.5 0.1],'BackgroundColor',BackgroundColor,... … … 3259 3261 'String','ref_i ref_j','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','center');%title 3260 3262 uicontrol('Style','edit','Units','normalized', 'Position', [0.15 0.17 0.3 0.08],'BackgroundColor',[1 1 1],... 3261 'Callback',@(hObject,eventdata)num_ref_i_Callback(hObject,eventdata),'String',num2str( SeriesData.ref_i),'FontUnits','points','FontSize',12,'FontWeight','bold',...3263 'Callback',@(hObject,eventdata)num_ref_i_Callback(hObject,eventdata),'String',num2str(ref_i),'FontUnits','points','FontSize',12,'FontWeight','bold',... 3262 3264 'Tag','num_ref_i','TooltipString','''num_ref_i'': reference field index i used to display dt in ''list_pair_civ'''); 3263 3265 uicontrol('Style','edit','Units','normalized', 'Position', [0.55 0.17 0.3 0.08],'BackgroundColor',[1 1 1],... 3264 'Callback',@(hObject,eventdata)num_ref_j_Callback(hObject,eventdata),'String',num2str( SeriesData.ref_j),'FontUnits','points','FontSize',12,'FontWeight','bold',...3266 'Callback',@(hObject,eventdata)num_ref_j_Callback(hObject,eventdata),'String',num2str(ref_j),'FontUnits','points','FontSize',12,'FontWeight','bold',... 3265 3267 'Tag','num_ref_j','TooltipString','''num_ref_j'': reference field index i used to display dt in ''list_pair_civ'''); 3266 3268 % last raw of the GUI: pushbuttons
Note: See TracChangeset
for help on using the changeset viewer.