Effacer les filtres
Effacer les filtres

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

5 vues (au cours des 30 derniers jours)
Wiktoria Glogowska
Wiktoria Glogowska le 22 Juil 2019
Commenté : Stephen23 le 22 Juil 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 commentaire
Stephen23
Stephen23 le 22 Juil 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.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by