Filter löschen
Filter löschen

How to plot only variables selected by a user in GUI?

5 Ansichten (letzte 30 Tage)
Wiktoria Glogowska
Wiktoria Glogowska am 22 Jul. 2019
Kommentiert: Stephen23 am 22 Jul. 2019
I am creating a GUI which after pushbutton1 will load the data which is stored in handles as a structure. There are 10 variables available (stored as a field) and data and time is stored as different fields in this structure. I would like to create a list which will allow user to choose up to 5 variables from the list and then plot then variables (from data) against time. I have created a list with strings, but I am not sure how to connect that string to the variables names and the actual columns in the dataset:
list = {'varname1','varname2',..., 'varname10' };
[indx,tf] = listdlg('ListString',list);
Also how to update that list with those that has been chosen? (I was thinking of a list that is ''dynaically'' changed once the user has selected the variables.)
  1 Kommentar
Stephen23
Stephen23 am 22 Jul. 2019
@Wiktoria Glogowska: if you want a more dynamic GUI then perhaps a simpler approach would be to have five drop-down menus (i.e. uicontrol) which the user can select from, and then simply update the plot within the callback of each drop-down menu. That way you could easily use handles and indices very neatly to keep simply update the line data.

Melden Sie sich an, um zu kommentieren.

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