GUI to launch a function based on dropdown list

조회 수: 8 (최근 30일)
David malins
David malins 2012년 4월 27일
Hi there, I'm trying to create a GUI that has a drop down list, the names correspond to different functions I would like to execute when I hit a 'load data' button. There is a simple gui in the examples but this preloads data from function; peaks, membrane etc. I want to select first and then execute. The functions go off an interogate a datbase.
hope someone has a sample gui i could use please?
dave

답변 (3개)

Doug Hull
Doug Hull 2012년 4월 27일
The key concepts you will need here:
Use
get(handles.popupmenu1, 'string')
get(handles.popupmenu1, 'value')
to get the selected string.
Use a switch case to choose among the options.
In each option, you will need to create a function handle to the appropriate function, ie
fh = @interogateMethodA
or
fh = @interogateMethodB
etc.
Then you can use feval, or just fh(inputs) to execute the arbitrary function with whatever inputs you wish.

Walter Roberson
Walter Roberson 2012년 4월 27일
dispatch_table = {@fun1, @fun2, @fun3};
thisfun = dispatch_table(get(TheHandle, 'Value'));
thisfun(AppropriateArguments);
  댓글 수: 1
Doug Hull
Doug Hull 2012년 4월 27일
The only thing I don't like here is if someone else modifies the order of the choices, or adds to them, this breaks (potentially). My switch case is more bullet proof to the common situation of someone messing with the GUI and not realizing the downstream impact.

댓글을 달려면 로그인하십시오.


David malins
David malins 2012년 4월 27일
Doug, Thanks for this. Just to clarify, would I do the get 'string' and value then do the switch case and function handle all under the 'popup' call back. Then use feval fh under the 'puchbutton' callback?
cheesr
  댓글 수: 1
Walter Roberson
Walter Roberson 2012년 4월 27일
strs = cellstr(get(handles.popupmenu1, 'string'));
thisstr = strs{get(handles.popupmenu1, 'value')};
You would probably do this at the pushbutton callback.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by