How to pass a table generated from a function back to app-designer?

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!

 채택된 답변

Rik
Rik 2020년 3월 11일
편집: Rik 2020년 3월 11일
Can't you do something like this?
app.T1=Function1(app, app.Path, app.File.Value);
Of course that would require you to change the function signature to this:
function T1=Function1(app, PATH, FILE);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

릴리스

R2019b

질문:

2020년 3월 11일

댓글:

2020년 3월 11일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by