Effacer les filtres
Effacer les filtres

How can I pass a variable in an app to basic workspace?

3 vues (au cours des 30 derniers jours)
Bence Salanki
Bence Salanki le 13 Sep 2018
Modifié(e) : Stephen23 le 13 Sep 2018
I have some variables in an app that I would like to use and list in the basic workspace. I am using Matlab 2018a and the AppDesigner, before in the GUI there was evalin(), and assignin() function for that but I tried here the same but it is not working. Any ideas?
Thank you,
  4 commentaires
Stephen23
Stephen23 le 13 Sep 2018
Modifié(e) : Stephen23 le 13 Sep 2018

"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).

Dennis
Dennis le 13 Sep 2018

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.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by