Can i connect a matlab code to the app enviroment?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Can i for example run my code from app designer or take as an input the variables from matlab file ?
2 commentaires
Réponses (1)
Ganesh Regoti
le 4 Fév 2020
Hi,
As per my understanding, you want to load data from mat file to appdesigner. load function must work for you
var=load('example.mat');
If you want to load data from any workspace into appdesigner code, then evalin function works fine.
v = evalin('base', 'var');
Here are the links you can refer to
Hope this helps!
0 commentaires
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!