Store MATLAB app designer variables to work-space

86 vues (au cours des 30 derniers jours)
Jack
Jack le 20 Mar 2016
Commenté : Manoj Devaraju le 16 Août 2021
Hi. How we can store app designer variables to MATLAB R2016a main window work-space. We have this behavior in GUIDE. There I can't find any connection between app designer and work-space of MATLAB.
  1 commentaire
Farzam Malmir
Farzam Malmir le 9 Avr 2018
Did you finally find a right answer?

Connectez-vous pour commenter.

Réponse acceptée

Sean de Wolski
Sean de Wolski le 12 Jan 2017
You could use assignin or export2wsdlg.
  3 commentaires
Eric Sargent
Eric Sargent le 9 Déc 2020
Example of assigning output to base workspace after pressing a button:
function ButtonPushed(app,event)
x = 10;
assignin('base','x',x);
end
Manoj Devaraju
Manoj Devaraju le 16 Août 2021
Hello,
For variable Its easy but what If I need to output data from the GUI to the struct,which already present in the workspace?

Connectez-vous pour commenter.

Plus de réponses (3)

qmnjb007
qmnjb007 le 12 Jan 2018
Modifié(e) : qmnjb007 le 12 Jan 2018
Here's a link to the matlab page on sharing data within apps that has sample solutions.

Chris Portal
Chris Portal le 10 Avr 2016
Jack, I can imagine a few scenarios why I might need to do this, but I'm curious to hear yours. Can you share why you're looking to store your App Designer variables outside your app? Is it to troubleshoot something or for some other purpose?
  2 commentaires
Stephen Wilkerson
Stephen Wilkerson le 5 Jan 2018
Typical... I can imagine a 1000 different reasons to do this. Why exactly is the workspace outside of the App designer?
Alok Virkar
Alok Virkar le 8 Mar 2018
I am looking for an answer for the original post. I need this so I can design a GUI for a 6DOF aircraft simulation in simulink. I want the user to define his inputs into the gui, and once a button is pushed I want the related m file aswell as the simulation to run using the variables defined by the user.

Connectez-vous pour commenter.


Armen Ghambaryan
Armen Ghambaryan le 12 Jan 2017
You can save variable in .mat file and then load it from workspace.

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by