Can i connect a matlab code to the app enviroment?
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
Mohammad Sami
le 31 Jan 2020
yes and yes. what are you trying to do ?
andreas christou
le 31 Jan 2020
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!
Catégories
En savoir plus sur Develop Apps Using App Designer dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!