Can I save calculations performed in App Designer to the workspace?
Ältere Kommentare anzeigen
Hi, I am creating an application which performs calculations based on user inputs and plots it on a graph. I would like to add a button that saves or exports the graph data to the MATLAB workspace (alternatively save it as a .mat file in a specified directory). Any ideas on how to do this? /danbro
2 Kommentare
danbro
am 10 Feb. 2017
Stetson Spencer
am 21 Nov. 2018
Hey would you mind sending me a link to the thread. I have a similar question also
Antworten (1)
Thomas Fournier
am 11 Aug. 2021
You can use the command "assignin"
for exemple, here is a button's callback that send all the app data to the workspace:
function Send2workspaceButtonPushed(app, event)
assignin("base","app",app);
end
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!