Changing variable from appdesigner in matlab script
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Furkan Karaman
le 5 Oct 2022
Commenté : Eric Delgado
le 21 Oct 2022
Hello,
How can I send a value for a variable from appdesigner to the workspace which is then used in a matlab script?
0 commentaires
Réponse acceptée
Eric Delgado
le 5 Oct 2022
You can use assignin to send the variable to Matlab base workspace.
% Suppose that you have a variable named "app.myVariable"
assignin('base', 'myVariable', app.myVariable)
openvar('myVariable')
6 commentaires
Eric Delgado
le 21 Oct 2022
Great to hear! Now that you are super happy with my support, you accept my answer, ok? :)
Plus de réponses (0)
Voir également
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!