Effacer les filtres
Effacer les filtres

Sharing Data Between GUI...

1 vue (au cours des 30 derniers jours)
Chiara Adami
Chiara Adami le 28 Mai 2013
Hi everybody! I've a problem : i needed to share data between 3 different GUIs that i've created using GUIDE. Now I've used the 'setappdata/getappdata' solution, specifing the MAtlab root in the function (something like setappdata(0,'new_var_name',var_name)). I need to have the data saved during a session available even after a restart of Matlab program. Is this possible? If yes, how? thanks a lot for any help :D

Réponses (2)

Iain
Iain le 28 Mai 2013
You can, at select points in your code, save a bunch of parameters to a file with a name you have chosen, to record the "current" state of your GUI and other stuff.
When your GUI is initialising, or when the user presses a "load" command, you can load in that file, and do "stuff" to make the gui go into the correct state.
If you want the user to select the file to save, or load, the functions uigetfile and uiputfile will help.
  1 commentaire
Iain
Iain le 28 Mai 2013
"save" and "load" will save and reload those parameters. If you want them to be unreadable, you'll need to use lower level functions to do the job.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 28 Mai 2013
What I do is to save all those settings into a mat file that gets read in when your GUI starts.

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