anyway to transfer data from matlab workspace to appdesigner
58 次查看(过去 30 天)
显示 更早的评论
Hi:
I want to develop an app based on the data in the workspace. is there anyway to do it like 'cftool'? i.e. once I open the app, the list of variable in workspace are available :
Thanks!
Yu
0 个评论
回答(1 个)
Payas Bahade
2019-8-26
Hi Yu,
Assuming that you want to import data from MATLAB workspace into the App Designer, the below mentioned links would be helpful:
2 个评论
haobo zhang
2022-5-5
I've got one way, you can try:
variable_names = evalin('base','who');
It'll return a cell array of the variable names in the workspace, then you can load specific data like this:
first_data = evalin('base', variable_names{1});
另请参阅
类别
在 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!