anyway to transfer data from matlab workspace to appdesigner
58 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi:
I want to develop an app based on the data in the workspace. is there anyway to do it like 'cftool'? i.e. once I open the app, the list of variable in workspace are available :
Thanks!
Yu
0 commentaires
Réponses (1)
Payas Bahade
le 26 Août 2019
Hi Yu,
Assuming that you want to import data from MATLAB workspace into the App Designer, the below mentioned links would be helpful:
2 commentaires
haobo zhang
le 5 Mai 2022
I've got one way, you can try:
variable_names = evalin('base','who');
It'll return a cell array of the variable names in the workspace, then you can load specific data like this:
first_data = evalin('base', variable_names{1});
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!