Ignore:
Timestamp:
Jan 4, 2011, 7:45:02 PM (13 years ago)
Author:
sommeria
Message:

cleaning of documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/get_field/filter_band.m

    r36 r170  
     1% 'filter_band.m': plot a field after band filtering in the GUI get_field
     2%  GUI_input=filter_band(hget_field)
     3%
     4% OUTPUT:
     5% GUI_input: option for display in the GUI get_field
     6%
     7%INPUT:
     8% hget_field: handles of the GUI get_field
     9%
    110function filter_band(Field,hget_field)
    211
     
    1019   lineNo=1;
    1120   answer=inputdlg(prompt,dlgTitle,lineNo,def);
    12 period=round(str2num(answer{1}))
     21period=round(str2num(answer{1}));
    1322filt_vector=ones(1,period)/period;% averaging vector
    14 VarName_y=Field.ListVarName(VarIndex.y)
     23VarName_y=Field.ListVarName(VarIndex.y);
    1524% hfig
    1625if isempty(str2num(hfig))
Note: See TracChangeset for help on using the changeset viewer.