Can i connect a matlab code to the app enviroment?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Can i for example run my code from app designer or take as an input the variables from matlab file ?
2 Commenti
Risposte (1)
Ganesh Regoti
il 4 Feb 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 Commenti
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!