Can i connect a matlab code to the app enviroment?
2 次查看(过去 30 天)
显示 更早的评论
Can i for example run my code from app designer or take as an input the variables from matlab file ?
2 个评论
回答(1 个)
Ganesh Regoti
2020-2-4
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!