Borrar filtros
Borrar filtros

How to get the list data from a listbox within a saved and recalled .fig file?

2 visualizaciones (últimos 30 días)
I have tried to used get(h,'children') etc. to access the info stored in the .fig file. It seem to be there as the list is about 300 items and can be scrolled to and clicked on from the recalled figure file. The goal is to be able to provide a dynamic .fig file for a secondary user to open and manipulate. Thanks, John

Respuesta aceptada

Walter Roberson
Walter Roberson el 8 de Mayo de 2013
listbox_handles = findobj(h, '-type', 'uicontrol', '-style', 'listbox');
There might be more than one, of course. If you know the tag you are looking for, then
listbox_handle = findobj(h, '-tag', 'TheTagHere');
  1 comentario
John
John el 14 de Mayo de 2013
Thanks, I'm new to this forum setup. Your code worked perfectly. I thought that I could use a similar method to obtain the rowlabels from a clustergram that was plotted and saved as a figure ( .fig) file. and then put that into a listbox so that a user would need only the fig file to dynamically focus into the gene area of interest of a clustergram. As a second question I have posted a question concerning how to obtain the label list from such a clustergram embedded in a plot .fig file. It's likely as simple as your listbox answer but I'm having trouble extracting the gene labels. Thanks again Walter, John Rodgers

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by