Ignore:
Timestamp:
Jul 11, 2024, 4:13:03 PM (3 months ago)
Author:
sommeria
Message:

filter_time added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/set_param_input.m

    r1145 r1157  
    99
    1010function [ParamOut,errormsg] = set_param_input(ListParam,DefaultValue,ParamIn,Comment)
     11ParamOut=[];
    1112errormsg=[];
    1213NbParam=numel(ListParam);
     
    3233end
    3334dlg_title = 'get the input parameters';
    34 answer = inputdlg(ListParam,dlg_title,NbParam,prompt);
     35options.Resize='on';
     36answer = inputdlg(ListParam,dlg_title,NbParam,prompt,options);
     37%answer = msgbox_uvmat('INPUT_TXT',ListParam);
    3538if isempty(answer)
    3639    return
Note: See TracChangeset for help on using the changeset viewer.