Can i connect a matlab code to the app enviroment?
2 views (last 30 days)
Show older comments
Can i for example run my code from app designer or take as an input the variables from matlab file ?
2 Comments
Answers (1)
Ganesh Regoti
on 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 Comments
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!