Changeset 228
- Timestamp:
- Mar 31, 2011, 1:43:49 PM (14 years ago)
- Location:
- trunk/src/series
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/sub_field_series.m
r226 r228 1 %'merge_proj': project and concatene fields, used with series.fig 2 %------------------------------------------------------------------------ 3 % function GUI_input=merge_proj(num_i1,num_i2,num_j1,num_j2,Series) 1 %'sub_field_series': substract the two input field series, then possibly project them on a grid (like merge_proj;m) 2 % GUI_input=sub_field_series(num_i1,num_i2,num_j1,num_j2,Series) 4 3 % 5 4 %OUTPUT -
trunk/src/series/time_series.m
r218 r228 205 205 %% check coincidence in time 206 206 multitime=0; 207 if length(timecell)==0207 if isempty(timecell) 208 208 time=[]; 209 209 elseif length(timecell)==1 … … 238 238 while exist(pathdir,'dir') 239 239 subdir_result=[subdir_result '.0']; 240 pathdir=fullfile( pathdir,subdir_result);240 pathdir=fullfile(RootPath{1},subdir_result); 241 241 end 242 242 [m1,m2,m3]=mkdir(pathdir);
Note: See TracChangeset
for help on using the changeset viewer.