app handler(appdesigner) is missing from workspace
2 views (last 30 days)
Show older comments
jiansong wan
on 29 Jul 2022
Commented: jiansong wan
on 29 Jul 2022
How can I access app handler from command line Matlab or workspace browser?
I have an app by appdesigner.
The app runs OK, does what it is designed to do.
However, I canno view any variable from workspace.
If I set a breakpoint and get Matlab into DebugMode, the workspace is filed correctly. Once I exit debug mode, workspace is cleared completely.
In order to access one set of structure array, I have a public properties [TestStruct]defined . However, I cannot acces this struct (such as app.TestStruct) from MAtlab command or workspace browser. The wokrspace browser is just empty, completely empty.
0 Comments
Accepted Answer
Abderrahim. B
on 29 Jul 2022
Hi!
You can use assignin . Read more:
Hope this helps
3 Comments
Abderrahim. B
on 29 Jul 2022
Hope assignin - based solution has solved your issue .
I have 2 comments:
- You mentioned this ' Once I exit debug mode, workspace is cleared completely' in your question >> stop/ exit the app will stop debug mode hence workspace will be cleared, do not stop the app while debugging ..
- In your reply you mentioned ' However, it is suprising to me that appDesigner can hide them even when they are assigned as public properties' >> Create a property as public does not mean to have it in the MATLAB base workspace. Check out this linkto learn the utility of public properties.
Hope you find this reply helpful
More Answers (0)
See Also
Categories
Find more on Develop Apps Using App Designer 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!