Changeset 462 for trunk/src/series/time_series.m
- Timestamp:
- Jun 20, 2012, 2:14:10 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/time_series.m
r459 r462 67 67 %% select different modes, RUN, parameter input, BATCH 68 68 % BATCH case: read the xml file for batch case 69 ParamOut=Param; %default output70 69 if ischar(Param) 71 if strcmp(Param,'input?')72 checkrun=1;% will inly search input parameters (preparation of BATCH mode)73 else74 70 Param=xml2struct(Param); 75 71 checkrun=0; 76 end77 72 % RUN case: parameters introduced as the input structure Param 78 73 else 79 74 hseries=guidata(Param.hseries);%handles of the GUI series 80 75 WaitbarPos=get(hseries.waitbar_frame,'Position');%position of the waitbar on the GUI series 81 checkrun=2; % indicate the RUN option is used 82 end 76 if isfield(Param,'Specific')&& strcmp(Param.Specific,'?') 77 checkrun=1;% will only search interactive input parameters (preparation of BATCH mode) 78 else 79 checkrun=2; % indicate the RUN option is used 80 end 81 end 82 ParamOut=Param; %default output 83 83 84 84 %% root input file(s) and type
Note: See TracChangeset
for help on using the changeset viewer.