- In the calling function replace 'uiwait(hApp.selectFiles)' with 'uiwait(hApp.UIFigure)'
- Generate a button called 'close' in the app and add a callback involving uiresume(app.UIFigure).
- Read out the needed data in the calling function (usually with hApp.<name>.Value).
- If the app interface is no longer needed call additionally 'hApp.delete'.
How do you output App data to a calling function?
2 次查看(过去 30 天)
显示 更早的评论
I have a function/script that calls an instance of an App I created in AppDesigner. How do I get the App to return data to the function/script upon closing the App?
hApp = selectFiles_v0000; % call to open App within the function/script
importInfo(hApp,trajectoryDirectory,'.nc') % necessary to import function data into the App since I only have Matlab 2016b and do not have the ability to have a StartUpFcn with inputs
uiwait(hApp.selectFiles);
% need to have data from the App available in the function/script at this point
0 个评论
采纳的回答
crixstox
2018-7-23
I had a similar probelm and made the following work around.
I hope this helps.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!