How to pass a table generated from a function back to app-designer?
1 次查看(过去 30 天)
显示 更早的评论
I have a function like this to generate a data table:
function Function1(app, PATH, FILE);
File_mat = fulfile(PATH, FILE);
load(File_mat);
...
...
...
T1 = table(Var1, Var2, Var3, ...);
end
I plan to call the above function from app-designer by using a command like the below:
Function1(app, app.Path, app.File.Value);
My question is how do I pass the generated table T1 back to app-designer?
Thanks!
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!