From GUI to workspace and from GUI1 to GUI2

1 view (last 30 days)
Hi,
I made a simple GUI that imports data and plots it. I am working with regular formulas, such as:
a=var(b);
plot(a)
Now, I would like to save my vector "a" to a workspace automatically, so I can save my workspace later on (or if program can). Should I have used handles, i.e.
handles.a=var(handles.b);
I dont really get what handles are, so if someone can explain that on a basic level, I would appreciate it.
Also, how could I use that data from one GUI, in another GUI (they are connected as parts of the same program)?

Answers (1)

Image Analyst
Image Analyst on 16 Mar 2014
You can't use handles since that is a structure that is local to each GUI. You'd have to write to a mat file or use setappdata() and getappdata(). Or assignin/evalin though those are normally not recommended.

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!