Can i connect a matlab code to the app enviroment?
3 ビュー (過去 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!