GUI to launch a function based on dropdown list

8 visualizaciones (últimos 30 días)
David malins
David malins el 27 de Abr. de 2012
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

Respuestas (3)

Doug Hull
Doug Hull el 27 de Abr. de 2012
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 el 27 de Abr. de 2012
dispatch_table = {@fun1, @fun2, @fun3};
thisfun = dispatch_table(get(TheHandle, 'Value'));
thisfun(AppropriateArguments);
  1 comentario
Doug Hull
Doug Hull el 27 de Abr. de 2012
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.

Iniciar sesión para comentar.


David malins
David malins el 27 de Abr. de 2012
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 comentario
Walter Roberson
Walter Roberson el 27 de Abr. de 2012
strs = cellstr(get(handles.popupmenu1, 'string'));
thisstr = strs{get(handles.popupmenu1, 'value')};
You would probably do this at the pushbutton callback.

Iniciar sesión para comentar.

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by