How to pass gui output to workspace?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Curious Mind
am 20 Jul. 2020
Kommentiert: Stephen23
am 23 Jul. 2020
Hello, I am trying to develop a gui using matlab app designer. 1. How do I write the code such that the output of a push button appears in the workspace? 2. I used the property tool to share data across but for some reason this only works if the output is physically present in the workspace. The output is a structure called F. How do I correct this? I am using evalin(‘base’, ‘F’) in the property section. If I can find a way to make the output appear in the workspace then the app will work fine.
Thank you
2 Kommentare
Roger J
am 21 Jul. 2020
I was able to create and write to a variable in the base workspace using the following:
% Button pushed function: Button
function ButtonPushed(app, event)
str = sprintf('%s called (%s)',"ButtonPushed",char(datetime));
assignin('base','myF',str)
end
"ButtonPushed()" is the callback for a button.
Let me know if it works for you.
Akzeptierte Antwort
Anirudh Singh
am 23 Jul. 2020
You can use "assignin" function to store data in the workspace either 'base' or 'caller' depending upon your requirements.
For more information check the documentation link for "assignin" function: https://www.mathworks.com/help/matlab/ref/assignin.html
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!