Can i connect a matlab code to the app enviroment?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Can i for example run my code from app designer or take as an input the variables from matlab file ?
2 Kommentare
Antworten (1)
Ganesh Regoti
am 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 Kommentare
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!