Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 8 Mai 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 Kommentar
John
John am 14 Mai 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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by