Changeset 38 for trunk/src/series


Ignore:
Timestamp:
Mar 7, 2010, 6:30:11 PM (14 years ago)
Author:
sommeria
Message:

field transforms put in subdir transform_field. cleaning of obsolete functions

Location:
trunk/src/series
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/aver_stat.m

    r29 r38  
    358358                        eval(['siz=size(Field.' VarName ');']);
    359359                        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'])
    361361                            nbmissing=nbmissing+1;
    362362                            break
  • trunk/src/series/sub_background.m

    r24 r38  
    118118    end
    119119    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')
    121121        return
    122122    end
  • trunk/src/series/time_series.m

    r27 r38  
    249249    for icell=1:length(timecell)
    250250        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')
    252252            time=timecell{1};
    253253            multitime=0;
     
    262262    diff_time=max(max(diff(time)));
    263263    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)])
    265265    end   
    266266end
Note: See TracChangeset for help on using the changeset viewer.