How can I pass a variable in an app to basic workspace?
4 Comments
Return them as output arguments. The simplest solutions are usually the best.
" before in the GUI there was evalin(), and assignin() function ..."
Note that making variables magically appear and disappear in other workspaces is one way that beginners force themselves into writing slow, complex code. Passing variables as input/output arguments is much more efficient.
"I have a button which connects an instrument to Matlab and I want to store this instrument in a variable and have this variable in the base workspace how would you do that?"
Personally I wouldn't, because processing data in the base workspace from any GUI is quite inefficient. It is much simpler and more efficient to process the data within the GUI.
"It is because the button's callback function doesn't have any output parameters and I can not edit that part."
Callbacks do not return any output arguments. Pass the data between GUI callbacks/workspaces using guidata (if using GUIDE) or nested functions (if sensibly writing your own code). Both of these easily allow you to output any data when the function is called, or when the GUI is closed (see waitfor).
I agree with Stephen, if there is no specific reason why you need your variables in base workspace do not bother getting them there.
However i also think there is no easy way to actually get output arguments from appdesigner.
Answers (0)
Categories
Find more on Startup and Shutdown 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!