How to export data from a GUI to Matlab Workspace?
18 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi all, I have to export data from a GUI to Matlab workspace. Anyone can help me? Thanks.
0 Kommentare
Antworten (4)
Image Analyst
am 6 Sep. 2012
You probably don't need to, or shouldn't need to, but if you insist, you can use the assignin() function. See the help for examples.
0 Kommentare
Azzi Abdelmalek
am 6 Sep. 2012
you can insert in each function concerned with x y z data the below code
global x y z
you also must run it before, on Matlab Command
0 Kommentare
Matt Fig
am 6 Sep. 2012
In the code of the GUI, when you want to export the variables do:
save guioutput
This will save all of the variables in the local workspace to a file named guioutput.mat.
Then from the command line do:
X = load('guioutput');
Now X is a structure with fieldnames the same as the variable names you saved.
If you need to do something more specific, then ask a more specific question...
2 Kommentare
Matt Fig
am 6 Sep. 2012
You can specify where to save the variables and the name of the file. Read this:
doc save
for example:
save('C:\Users\matt fig\Documents\MATLAB3\mvars')
saves all the variables in the local workspace to myvars.mat in the MATLAB3 folder.
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT-Files 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!