Filter löschen
Filter löschen

Sharing Data Between GUI...

1 Ansicht (letzte 30 Tage)
Chiara Adami
Chiara Adami am 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

Antworten (2)

Iain
Iain am 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 Kommentar
Iain
Iain am 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.

Melden Sie sich an, um zu kommentieren.


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

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