Changeset 38 for trunk/src/series
- Timestamp:
- Mar 7, 2010, 6:30:11 PM (15 years ago)
- Location:
- trunk/src/series
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/aver_stat.m
r29 r38 358 358 eval(['siz=size(Field.' VarName ');']); 359 359 if ~isequal(siz,sizmean) 360 warndlg_uvmat(['unequal size of input field ' VarName ', need to interpolate on a grid'],'WARNING')360 msgbox_uvmat('WARNING',['unequal size of input field ' VarName ', need to interpolate on a grid']) 361 361 nbmissing=nbmissing+1; 362 362 break -
trunk/src/series/sub_background.m
r24 r38 118 118 end 119 119 if ~isequal(floor(nbslice_i),nbslice_i) 120 warndlg_uvmat('the number of slices must be a multiple of the i increment','ERROR')120 msgbox_uvmat('ERROR','the number of slices must be a multiple of the i increment') 121 121 return 122 122 end -
trunk/src/series/time_series.m
r27 r38 249 249 for icell=1:length(timecell) 250 250 if ~isequal(size(timecell{icell}),size(timecell{1})) 251 warndlg_uvmat('inconsistent time array dimensions in ImaDoc fields, the time for the first series is used','WARNING')251 msgbox_uvmat('WARNING','inconsistent time array dimensions in ImaDoc fields, the time for the first series is used') 252 252 time=timecell{1}; 253 253 multitime=0; … … 262 262 diff_time=max(max(diff(time))); 263 263 if diff_time>0 264 warndlg_uvmat(['times of series differ by more than ' num2str(diff_time)],'WARNING')264 msgbox_uvmat('WARNING',['times of series differ by more than ' num2str(diff_time)]) 265 265 end 266 266 end
Note: See TracChangeset
for help on using the changeset viewer.